diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-08 18:46:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-08 18:46:40 +0000 |
commit | de076650fa79a02743b5fe57a72f991ba24779f9 (patch) | |
tree | ac56895f8a3fe956fd5bc26cf656c67ab1ad4e23 /include/clang/Lex/Preprocessor.h | |
parent | b8e240ed8b8f58c7b7fe82776bd6147b437f5d53 (diff) |
reject the #__include_macros directive unless it comes from the
predefines buffer.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68627 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/Preprocessor.h')
-rw-r--r-- | include/clang/Lex/Preprocessor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Lex/Preprocessor.h b/include/clang/Lex/Preprocessor.h index 7e03d196c4..0e16ef8287 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -748,6 +748,7 @@ private: const DirectoryLookup *LookupFrom = 0, bool isImport = false); void HandleIncludeNextDirective(Token &Tok); + void HandleIncludeMacrosDirective(Token &Tok); void HandleImportDirective(Token &Tok); // Macro handling. |