diff options
| author | Eli Friedman <eli.friedman@gmail.com> | 2011-08-31 18:45:31 +0000 | 
|---|---|---|
| committer | Eli Friedman <eli.friedman@gmail.com> | 2011-08-31 18:45:31 +0000 | 
| commit | 874844123fd5b773a525b59329f11d75c92f805b (patch) | |
| tree | 307f777c9d0b5f43ed0e0e4cb31fe280820479f9 /clang/lib/Lex | |
| parent | cfa9421e167e3183e16032547299ed279e2b0806 (diff) | |
| download | bcm5719-llvm-874844123fd5b773a525b59329f11d75c92f805b.tar.gz bcm5719-llvm-874844123fd5b773a525b59329f11d75c92f805b.zip | |
Make sure to initialize field.  Hopefully this will fix some test failures on Windows.
llvm-svn: 138880
Diffstat (limited to 'clang/lib/Lex')
| -rw-r--r-- | clang/lib/Lex/Preprocessor.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp index 65a5b99ca12..b285660c085 100644 --- a/clang/lib/Lex/Preprocessor.cpp +++ b/clang/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; | 

