mirror of
https://github.com/nlohmann/json.git
synced 2026-03-18 06:55:58 +00:00
🚨 fixed some warnings
This commit is contained in:
@@ -620,7 +620,7 @@ class serializer
|
||||
if (is_negative)
|
||||
{
|
||||
*buffer_ptr = '-';
|
||||
abs_value = static_cast<number_unsigned_t>(-1 - x) + 1;
|
||||
abs_value = static_cast<number_unsigned_t>(std::abs(static_cast<std::intmax_t>(x)));
|
||||
|
||||
// account one more byte for the minus sign
|
||||
n_chars = 1 + count_digits(abs_value);
|
||||
|
||||
Reference in New Issue
Block a user