[cfe-commits] r138880 - /cfe/trunk/lib/Lex/Preprocessor.cpp

Eli Friedman eli.friedman at gmail.com
Wed Aug 31 11:45:31 PDT 2011


Author: efriedma
Date: Wed Aug 31 13:45:31 2011
New Revision: 138880

URL: http://llvm.org/viewvc/llvm-project?rev=138880&view=rev
Log:
Make sure to initialize field.  Hopefully this will fix some test failures on Windows.


Modified:
    cfe/trunk/lib/Lex/Preprocessor.cpp

Modified: cfe/trunk/lib/Lex/Preprocessor.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Lex/Preprocessor.cpp?rev=138880&r1=138879&r2=138880&view=diff
==============================================================================
--- cfe/trunk/lib/Lex/Preprocessor.cpp (original)
+++ cfe/trunk/lib/Lex/Preprocessor.cpp Wed Aug 31 13:45:31 2011
@@ -77,6 +77,7 @@
   // Default to discarding comments.
   KeepComments = false;
   KeepMacroComments = false;
+  SuppressIncludeNotFoundError = false;
 
   // Macro expansion is enabled.
   DisableMacroExpansion = false;





More information about the cfe-commits mailing list