diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-10 22:13:17 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-10 22:13:17 +0000 |
commit | 531cc8355608295caa01f31fa4e078d77a3d6470 (patch) | |
tree | 69b4b699385ee42bf842f3ce4a6f2f9d8feffd8e /include/clang/Lex/Preprocessor.h | |
parent | 47892828490da215fc2be630ea13d40706c3ae66 (diff) |
do a dance with predefines, and finally enable reading of macros from
PCH. This works now, except for limitations not being able to do things
with identifiers. The basic example in the testcase works though.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68832 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/Preprocessor.h')
-rw-r--r-- | include/clang/Lex/Preprocessor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Lex/Preprocessor.h b/include/clang/Lex/Preprocessor.h index 0bf6126d58..656ebed899 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -788,7 +788,7 @@ class PreprocessorFactory { public: virtual ~PreprocessorFactory(); virtual Preprocessor* CreatePreprocessor() = 0; - virtual bool FinishInitialization(Preprocessor *PP); + virtual bool FinishInitialization(Preprocessor *PP, bool usesPCH); }; } // end namespace clang |