minor change
This commit is contained in:
parent
d31d1ca664
commit
b1be1b45ee
3 changed files with 9 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue