removed call to std::signbit #761

parent 8af49d4b
......@@ -6660,7 +6660,7 @@ class serializer
return;
}
const auto is_negative = std::signbit(x);
const bool is_negative = 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