fixed #101
This commit is contained in:
parent
abd741708d
commit
82a6995306
3 changed files with 14 additions and 2 deletions
src
|
@ -3978,7 +3978,7 @@ class basic_json
|
|||
{
|
||||
// control characters (everything between 0x00 and 0x1f)
|
||||
// -> create four-digit hex representation
|
||||
o << "\\u" << std::hex << std::setw(4) << std::setfill('0') << int(c);
|
||||
o << "\\u" << std::hex << std::setw(4) << std::setfill('0') << int(c) << std::dec;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue