mirror of
https://github.com/nlohmann/json
synced 2024-11-12 23:40:05 +00:00
Cast character to unsigned for comparison
This commit is contained in:
parent
d70d06ae41
commit
23051df2c7
@ -1367,7 +1367,7 @@ scan_number_done:
|
||||
std::string result;
|
||||
for (const auto c : token_string)
|
||||
{
|
||||
if ('\x00' <= c and c <= '\x1F')
|
||||
if (static_cast<unsigned char>(c) <= '\x1F')
|
||||
{
|
||||
// escape control characters
|
||||
std::array<char, 9> cs{{}};
|
||||
|
@ -9456,7 +9456,7 @@ scan_number_done:
|
||||
std::string result;
|
||||
for (const auto c : token_string)
|
||||
{
|
||||
if ('\x00' <= c and c <= '\x1F')
|
||||
if (static_cast<unsigned char>(c) <= '\x1F')
|
||||
{
|
||||
// escape control characters
|
||||
std::array<char, 9> cs{{}};
|
||||
|
Loading…
Reference in New Issue
Block a user