mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 07:34:50 +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_];
|
L = [a-zA-Z_];
|
||||||
H = [a-fA-F0-9];
|
H = [a-fA-F0-9];
|
||||||
E = [Ee] [+-]? D+;
|
E = [Ee] [+-]? D+;
|
||||||
FS = [fFlL];
|
FS = [fF];
|
||||||
IS = [uUlL];
|
IS = [uUlL];
|
||||||
ESC = [\\] ([abcfnrtv?'"\\] | "x" H+ | O+);
|
ESC = [\\] ([abcfnrtv?'"\\] | "x" H+ | O+);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue