From 17d527b051fbc3927b8a1b4ce4607a9b2ed445ee Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 23 Jan 2009 18:00:48 +0000 Subject: [PATCH] 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 --- include/clang/Lex/Preprocessor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.40.0