[cfe-commits] r62854 - /cfe/trunk/include/clang/Lex/Preprocessor.h

Chris Lattner sabre at nondot.org
Fri Jan 23 10:00:48 PST 2009


Author: lattner
Date: Fri Jan 23 12:00:48 2009
New Revision: 62854

URL: http://llvm.org/viewvc/llvm-project?rev=62854&view=rev
Log:
Preprocessor doesn't require and IdentifierInfoLookup object.
Patch by Axel Naumann!

Modified:
    cfe/trunk/include/clang/Lex/Preprocessor.h

Modified: cfe/trunk/include/clang/Lex/Preprocessor.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Lex/Preprocessor.h?rev=62854&r1=62853&r2=62854&view=diff

==============================================================================
--- cfe/trunk/include/clang/Lex/Preprocessor.h (original)
+++ cfe/trunk/include/clang/Lex/Preprocessor.h Fri Jan 23 12:00:48 2009
@@ -192,7 +192,7 @@
 public:
   Preprocessor(Diagnostic &diags, const LangOptions &opts, TargetInfo &target,
                SourceManager &SM, HeaderSearch &Headers,
-               IdentifierInfoLookup* IILookup);
+               IdentifierInfoLookup* IILookup = 0);
 
   ~Preprocessor();
 





More information about the cfe-commits mailing list