mirror of
https://github.com/nlohmann/json.git
synced 2025-07-10 22:00:59 +03:00
minor change
This commit is contained in:
@ -1491,7 +1491,7 @@ class basic_json
|
||||
|
||||
default:
|
||||
{
|
||||
if (c <= 0x1f)
|
||||
if (c >= 0 and c <= 0x1f)
|
||||
{
|
||||
// control characters (everything between 0x00 and 0x1f)
|
||||
// -> create four-digit hex representation
|
||||
|
Reference in New Issue
Block a user