mirror of
https://github.com/nlohmann/json.git
synced 2024-12-14 22:19:00 +08:00
Addressing msvc-specific compilation issues.
This commit is contained in:
parent
509447b4d5
commit
82b82fd487
@ -6429,7 +6429,7 @@ class basic_json
|
|||||||
|
|
||||||
while(x and i < s_capacity)
|
while(x and i < s_capacity)
|
||||||
{
|
{
|
||||||
m_buf[i++] = '0' + abs(x % 10);
|
m_buf[i++] = static_cast<char>('0' + std::labs(x % 10));
|
||||||
x /= 10;
|
x /= 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6429,7 +6429,7 @@ class basic_json
|
|||||||
|
|
||||||
while(x and i < s_capacity)
|
while(x and i < s_capacity)
|
||||||
{
|
{
|
||||||
m_buf[i++] = '0' + abs(x % 10);
|
m_buf[i++] = static_cast<char>('0' + std::labs(x % 10));
|
||||||
x /= 10;
|
x /= 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user