fix annoying compilation warning

This commit is contained in:
BernardoGiordano 2021-04-13 09:50:42 +02:00
parent 9af8156f00
commit 4936c50d28

View file

@ -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{{}};