提交 6d8e00ad 编写于 作者: N Niels

another try to remove a warning

上级 ac3036dc
......@@ -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
......
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册