🚨 fixed some linter warnings
This commit is contained in:
parent
f1768a540a
commit
ec95438a59
5 changed files with 10 additions and 10 deletions
|
|
@ -442,7 +442,7 @@ class serializer
|
|||
return;
|
||||
}
|
||||
|
||||
const bool is_negative = not (x >= 0); // see issue #755
|
||||
const bool is_negative = std::is_same<NumberType, number_integer_t>::value and not (x >= 0); // see issue #755
|
||||
std::size_t i = 0;
|
||||
|
||||
while (x != 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue