From 08803f6b7d6c7c7cbe9a86e39f0de9440a768689 Mon Sep 17 00:00:00 2001 From: Eugene Zelenko Date: Mon, 4 Dec 2017 23:38:10 +0000 Subject: [PATCH] [Lex] Fix lldb-x86_64-ubuntu-14.04-buildserver build bot broken with r319714 (NFC). llvm-svn: 319716 --- clang/include/clang/Lex/PreprocessorLexer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/Lex/PreprocessorLexer.h b/clang/include/clang/Lex/PreprocessorLexer.h index 8d5848913ed7..ff71d11b4511 100644 --- a/clang/include/clang/Lex/PreprocessorLexer.h +++ b/clang/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;