mirror of
https://github.com/BernardoGiordano/Checkpoint
synced 2024-11-10 03:54:13 +00:00
fix annoying compilation warning
This commit is contained in:
parent
9af8156f00
commit
4936c50d28
1 changed files with 1 additions and 1 deletions
2
3rd-party/json/json.hpp
vendored
2
3rd-party/json/json.hpp
vendored
|
@ -8379,7 +8379,7 @@ scan_number_done:
|
|||
std::string result;
|
||||
for (const auto c : token_string)
|
||||
{
|
||||
if ('\x00' <= c and c <= '\x1F')
|
||||
if (c <= '\x1F')
|
||||
{
|
||||
// escape control characters
|
||||
std::array<char, 9> cs{{}};
|
||||
|
|
Loading…
Reference in a new issue