diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-23 18:00:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-23 18:00:48 +0000 |
commit | 17d527b051fbc3927b8a1b4ce4607a9b2ed445ee (patch) | |
tree | aa608ec977a6c7eb0fff9f770e0e9ea5f2c6ef23 | |
parent | f31c7293ff626c8f235c62991617084a100300c4 (diff) |
Preprocessor doesn't require and IdentifierInfoLookup object.
Patch by Axel Naumann!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62854 91177308-0d34-0410-b5e6-96231b3b80d8
-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 3956725ffa..2954c676e8 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -192,7 +192,7 @@ private: // Cached tokens state. public: Preprocessor(Diagnostic &diags, const LangOptions &opts, TargetInfo &target, SourceManager &SM, HeaderSearch &Headers, - IdentifierInfoLookup* IILookup); + IdentifierInfoLookup* IILookup = 0); ~Preprocessor(); |