From: Richard Smith Date: Tue, 28 Apr 2015 21:09:27 +0000 (+0000) Subject: Work around a suspected MSVC miscompile to try to bring the MSVC2013 buildbot back. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=749f1a8045e0d6b019f6c49edbdbc0df30605fb2;p=clang Work around a suspected MSVC miscompile to try to bring the MSVC2013 buildbot back. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@236034 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Lex/Preprocessor.h b/include/clang/Lex/Preprocessor.h index c4765f099e..4a6ed81218 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -498,6 +498,7 @@ class Preprocessor : public RefCountedBase { SourceLocation ImportLoc; struct SavedMacroInfo { + SavedMacroInfo() : Latest(nullptr) {} MacroDirective *Latest; llvm::TinyPtrVector Overridden; };