From c0846d623b2ef8502ff3ebcbf2cf37a6b0ab9f93 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Wed, 31 Aug 2011 18:45:31 +0000 Subject: [PATCH] Make sure to initialize field. Hopefully this will fix some test failures on Windows. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138880 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Lex/Preprocessor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index 65a5b99ca1..b285660c08 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/lib/Lex/Preprocessor.cpp @@ -77,6 +77,7 @@ Preprocessor::Preprocessor(Diagnostic &diags, const LangOptions &opts, // Default to discarding comments. KeepComments = false; KeepMacroComments = false; + SuppressIncludeNotFoundError = false; // Macro expansion is enabled. DisableMacroExpansion = false; -- 2.40.0