Unverified Commit 49122314 authored by Niels Lohmann's avatar Niels Lohmann

Merge branch 'develop' into feature/issue698

parents f89f8b2d b91805e1
......@@ -6656,7 +6656,7 @@ class serializer
return;
}
const bool is_negative = x < 0;
const bool is_negative = std::is_same<NumberType, number_integer_t>::value and (x < 0);
std::size_t i = 0;
// spare 1 byte for '\0'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment