From: Eugene Zelenko Date: Mon, 4 Dec 2017 23:38:10 +0000 (+0000) Subject: [Lex] Fix lldb-x86_64-ubuntu-14.04-buildserver build bot broken with r319714 (NFC). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd92d11a8a57ad6e20e007c54ccb28ccc4e5f43e;p=clang [Lex] Fix lldb-x86_64-ubuntu-14.04-buildserver build bot broken with r319714 (NFC). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@319716 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Lex/PreprocessorLexer.h b/include/clang/Lex/PreprocessorLexer.h index 8d5848913e..ff71d11b45 100644 --- a/include/clang/Lex/PreprocessorLexer.h +++ b/include/clang/Lex/PreprocessorLexer.h @@ -76,7 +76,7 @@ protected: /// we are currently in. SmallVector ConditionalStack; - PreprocessorLexer() {} + PreprocessorLexer() : FID() {} PreprocessorLexer(Preprocessor *pp, FileID fid); virtual ~PreprocessorLexer() = default;