File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -130,10 +130,10 @@ class ConfigValue {
130
130
}
131
131
132
132
if (
133
- // first condition will be true if the value is bigger than int64/uint64 max value
134
- // the second condition checks if the value is fit as int64/uint64, but not fit for
135
- // designed type, eg. uint32; in that case the errno will be 0, but
136
- // we must check the value is not bigger than the given max() at the type class
133
+ // The first condition will be true when the value is bigger than int64/uint64 maximum value.
134
+ // The second condition checks whether the value fits into int64/uint64, but not
135
+ // into the designed type, e.g., uint32; in that case the errno will be 0, but
136
+ // we must check the value is not bigger than the defined maximum of the class.
137
137
(errno == ERANGE && val == std::numeric_limits<LimitSigned>::max ())
138
138
||
139
139
(val > static_cast <LimitSigned>(maxValue ()))
You can’t perform that action at this time.
0 commit comments