⏪ removed call to std::signbit #761
This commit is contained in:
parent
8af49d4be5
commit
1df836ce40
1 changed files with 1 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue