diff options
Diffstat (limited to 'libcpp/traditional.c')
-rw-r--r-- | libcpp/traditional.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcpp/traditional.c b/libcpp/traditional.c index 21c63b4..ff06d31 100644 --- a/libcpp/traditional.c +++ b/libcpp/traditional.c @@ -78,8 +78,8 @@ enum ls {ls_none = 0, /* Normal state. */ ls_hash, /* After # in preprocessor conditional. */ ls_predicate, /* After the predicate, maybe paren? */ ls_answer, /* In answer to predicate. */ - ls_has_include, /* After __has_include__. */ - ls_has_include_close}; /* Looking for ')' of __has_include__. */ + ls_has_include, /* After __has_include. */ + ls_has_include_close}; /* Looking for ')' of __has_include. */ /* Lexing TODO: Maybe handle space in escaped newlines. Stop lex.c from recognizing comments and directives during its lexing pass. */ @@ -565,8 +565,8 @@ _cpp_scan_out_logical_line (cpp_reader *pfile, cpp_macro *macro, continue; } else if (pfile->state.in_expression - && (node == pfile->spec_nodes.n__has_include__ - || node == pfile->spec_nodes.n__has_include_next__)) + && (node == pfile->spec_nodes.n__has_include + || node == pfile->spec_nodes.n__has_include_next)) { lex_state = ls_has_include; continue; |