formatting
This commit is contained in:
parent
9c05060820
commit
255b19e51b
|
@ -1909,7 +1909,6 @@ long ExpressionParseInt(struct ParseState *Parser)
|
|||
ProgramFail(Parser, "expression expected");
|
||||
|
||||
if (Parser->Mode == RunModeRun) {
|
||||
// if (!IS_NUMERIC_COERCIBLE(Val))
|
||||
if (!IS_NUMERIC_COERCIBLE_PLUS_POINTERS(Val, true))
|
||||
ProgramFail(Parser, "integer value expected instead of %t", Val->Typ);
|
||||
|
||||
|
|
2
lex.c
2
lex.c
|
@ -53,7 +53,7 @@ struct ReservedWord {
|
|||
};
|
||||
|
||||
static struct ReservedWord ReservedWords[] = {
|
||||
/* wrf, when optimizations are set escaping certain chars is required or they disappear */
|
||||
/* wtf, when optimizations are set escaping certain chars is required or they disappear */
|
||||
{"#define", TokenHashDefine},
|
||||
{"#else", TokenHashElse},
|
||||
{"#endif", TokenHashEndif},
|
||||
|
|
Loading…
Reference in a new issue