1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

♻️ replace further alternative operators

This commit is contained in:
Niels Lohmann
2020-07-11 14:09:06 +02:00
parent 7f923424b3
commit 6477b9b20a
2 changed files with 2 additions and 2 deletions

View File

@ -9609,7 +9609,7 @@ scan_number_done:
{
get();
}
while (current == ' ' or current == '\t' or current == '\n' or current == '\r');
while (current == ' ' || current == '\t' || current == '\n' || current == '\r');
}
token_type scan()