Addressing msvc-specific compilation issues.

This commit is contained in:
Alex Astashyn 2016-12-05 20:33:28 -05:00
parent 509447b4d5
commit 82b82fd487
2 changed files with 2 additions and 2 deletions

View file

@ -6429,7 +6429,7 @@ class basic_json
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;
}

View file

@ -6429,7 +6429,7 @@ class basic_json
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;
}