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 | 9db60a38e9be06f1cef1522028ece1af64e945a1 (patch) | |
| tree | cee5283381d6c1c9a893e6cedf1c122b2fab09d6 | |
| parent | 7fa50496f6566b463b70b9f00a244ae6ad15acf1 (diff) | |
| download | bcm5719-llvm-9db60a38e9be06f1cef1522028ece1af64e945a1.tar.gz bcm5719-llvm-9db60a38e9be06f1cef1522028ece1af64e945a1.zip | |
Preprocessor doesn't require and IdentifierInfoLookup object.
Patch by Axel Naumann!
llvm-svn: 62854
| -rw-r--r-- | clang/include/clang/Lex/Preprocessor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Lex/Preprocessor.h b/clang/include/clang/Lex/Preprocessor.h index 3956725ffa6..2954c676e8d 100644 --- a/clang/include/clang/Lex/Preprocessor.h +++ b/clang/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(); |

