diff options
Diffstat (limited to 'libcpp/identifiers.c')
-rw-r--r-- | libcpp/identifiers.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcpp/identifiers.c b/libcpp/identifiers.c index cfb9979..8fba8c0 100644 --- a/libcpp/identifiers.c +++ b/libcpp/identifiers.c @@ -72,6 +72,8 @@ _cpp_init_hashtable (cpp_reader *pfile, cpp_hash_table *table) s->n_false = cpp_lookup (pfile, DSC("false")); s->n__VA_ARGS__ = cpp_lookup (pfile, DSC("__VA_ARGS__")); s->n__VA_ARGS__->flags |= NODE_DIAGNOSTIC; + s->n__has_include__ = cpp_lookup (pfile, DSC("__has_include__")); + s->n__has_include_next__ = cpp_lookup (pfile, DSC("__has_include_next__")); } /* Tear down the identifier hash table. */ |