mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 12:31:10 +00:00
[qfcc] Handle l and ll integer suffixes
They're ignored, but allow recent vulkan headers to compile. Fixes #13
This commit is contained in:
parent
63eaf9e823
commit
13b4b44e35
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ STRING \"(\\.|[^"\\])*\"
|
|||
|
||||
^{s}*#{s}*pragma{s}+ { BEGIN (PRAGMA); }
|
||||
|
||||
{INT}+[uU]? {
|
||||
{INT}+[uU]?([lL][lL]?)? {
|
||||
const char *c = yytext + yyleng - 1;
|
||||
int i;
|
||||
|
||||
|
|
Loading…
Reference in a new issue