diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-06-09 02:04:02 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-06-09 02:04:02 +0000 |
commit | 4b56692e3032a41e3a172905ff9407649cba004e (patch) | |
tree | 3af71753bc3cdddd90e73afbc6ef8fc9f78d7b15 /clang/lib/Lex/Preprocessor.cpp | |
parent | f61be9c971d20d1f30f5444e525990b78a71d65e (diff) | |
download | bcm5719-llvm-4b56692e3032a41e3a172905ff9407649cba004e.tar.gz bcm5719-llvm-4b56692e3032a41e3a172905ff9407649cba004e.zip |
[C++11] Use 'nullptr'.
llvm-svn: 210448
Diffstat (limited to 'clang/lib/Lex/Preprocessor.cpp')
-rw-r--r-- | clang/lib/Lex/Preprocessor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp index b561636a162..aead148b66b 100644 --- a/clang/lib/Lex/Preprocessor.cpp +++ b/clang/lib/Lex/Preprocessor.cpp @@ -60,7 +60,7 @@ Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts, ModuleLoader &TheModuleLoader, IdentifierInfoLookup *IILookup, bool OwnsHeaders, TranslationUnitKind TUKind) - : PPOpts(PPOpts), Diags(&diags), LangOpts(opts), Target(0), + : PPOpts(PPOpts), Diags(&diags), LangOpts(opts), Target(nullptr), FileMgr(Headers.getFileMgr()), SourceMgr(SM), HeaderInfo(Headers), TheModuleLoader(TheModuleLoader), ExternalSource(nullptr), Identifiers(opts, IILookup), IncrementalProcessing(false), TUKind(TUKind), @@ -70,7 +70,7 @@ Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts, SkipMainFilePreamble(0, true), CurPPLexer(nullptr), CurDirLookup(nullptr), CurLexerKind(CLK_Lexer), CurSubmodule(nullptr), Callbacks(nullptr), MacroArgCache(nullptr), Record(nullptr), - MIChainHead(nullptr), MICache(nullptr), DeserialMIChainHead(0) { + MIChainHead(nullptr), MICache(nullptr), DeserialMIChainHead(nullptr) { OwnsHeaderSearch = OwnsHeaders; ScratchBuf = new ScratchBuffer(SourceMgr); |