formatting

This commit is contained in:
Joseph Poirier 2015-06-18 23:20:10 -05:00
parent 9c05060820
commit 255b19e51b
3 changed files with 4 additions and 5 deletions

View file

@ -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
View file

@ -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},