From: Chris Lattner Date: Fri, 23 Jan 2009 18:00:48 +0000 (+0000) Subject: Preprocessor doesn't require and IdentifierInfoLookup object. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17d527b051fbc3927b8a1b4ce4607a9b2ed445ee;p=clang 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 --- 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();