🚨 fixed some linter warnings

This commit is contained in:
Niels Lohmann 2018-10-06 13:49:02 +02:00
parent f1768a540a
commit ec95438a59
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
5 changed files with 10 additions and 10 deletions

View file

@ -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)