diff options
Diffstat (limited to 'clang/lib/Lex/PreprocessorLexer.cpp')
-rw-r--r-- | clang/lib/Lex/PreprocessorLexer.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/lib/Lex/PreprocessorLexer.cpp b/clang/lib/Lex/PreprocessorLexer.cpp index 2ce181ef83a..1916f298dbd 100644 --- a/clang/lib/Lex/PreprocessorLexer.cpp +++ b/clang/lib/Lex/PreprocessorLexer.cpp @@ -19,7 +19,10 @@ using namespace clang; PreprocessorLexer::PreprocessorLexer(Preprocessor* pp, SourceLocation L) - : PP(pp), FileID(pp->getSourceManager().getPhysicalLoc(L).getFileID()) {} + : PP(pp), FileID(pp->getSourceManager().getPhysicalLoc(L).getFileID()), + ParsingPreprocessorDirective(false), + ParsingFilename(false), + LexingRawMode(false) {} PreprocessorLexer::~PreprocessorLexer() {} |