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:
Randy Heit 2013-09-10 21:30:33 -05:00
parent 6545c48e07
commit aec6aff7a8
1 changed files with 1 additions and 1 deletions

View File

@ -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+);