Fix hex constant in lParseInteger() (missing an f)
This commit is contained in:
2
lex.ll
2
lex.ll
@@ -592,7 +592,7 @@ lParseInteger(bool dotdotdot) {
|
|||||||
return us ? TOKEN_UINT32_CONSTANT : TOKEN_INT32_CONSTANT;
|
return us ? TOKEN_UINT32_CONSTANT : TOKEN_INT32_CONSTANT;
|
||||||
else if (us) {
|
else if (us) {
|
||||||
// u suffix only
|
// u suffix only
|
||||||
if (yylval.intVal <= 0xfffffffL)
|
if (yylval.intVal <= 0xffffffffL)
|
||||||
return TOKEN_UINT32_CONSTANT;
|
return TOKEN_UINT32_CONSTANT;
|
||||||
else
|
else
|
||||||
return TOKEN_UINT64_CONSTANT;
|
return TOKEN_UINT64_CONSTANT;
|
||||||
|
|||||||
Reference in New Issue
Block a user