mirror of
https://github.com/nlohmann/json.git
synced 2025-07-13 20:21:48 +03:00
another try to remove a warning
This commit is contained in:
@ -5967,7 +5967,7 @@ class basic_json
|
||||
{
|
||||
return (v < 10)
|
||||
? ('0' + static_cast<char>(v))
|
||||
: ('a' + static_cast<char>((v - 10) & 0xff));
|
||||
: ('a' + static_cast<char>((v - 10) & 0x1f));
|
||||
};
|
||||
|
||||
// print character c as \uxxxx
|
||||
|
Reference in New Issue
Block a user