♻️ replace further alternative operators
This commit is contained in:
parent
7f923424b3
commit
6477b9b20a
2 changed files with 2 additions and 2 deletions
|
@ -1495,7 +1495,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()
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue