Addressing msvc-specific compilation issues.
This commit is contained in:
parent
509447b4d5
commit
82b82fd487
2 changed files with 2 additions and 2 deletions
|
@ -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 a new issue