mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Don't accept l as a suffix for floating point numbers in the scanner
- We're never going to support long doubles, so don't pretend.
This commit is contained in:
parent
6545c48e07
commit
aec6aff7a8
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ std2:
|
|||
L = [a-zA-Z_];
|
||||
H = [a-fA-F0-9];
|
||||
E = [Ee] [+-]? D+;
|
||||
FS = [fFlL];
|
||||
FS = [fF];
|
||||
IS = [uUlL];
|
||||
ESC = [\\] ([abcfnrtv?'"\\] | "x" H+ | O+);
|
||||
|
||||
|
|
Loading…
Reference in a new issue