diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-11-19 14:23:14 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-11-19 14:23:14 +0000 |
commit | f5e2812e6966ec0ec37de50b151db3475e80f2dc (patch) | |
tree | 764a8e5d482719fea098f8faa213c6b0f4f97725 /clang/lib/Lex/Preprocessor.cpp | |
parent | 4172d641d196ef75162c43be61205cf8ab1817f7 (diff) | |
download | bcm5719-llvm-f5e2812e6966ec0ec37de50b151db3475e80f2dc.tar.gz bcm5719-llvm-f5e2812e6966ec0ec37de50b151db3475e80f2dc.zip |
Remove Preprocessor::CacheTokens boolean data member. The same functionality can be provided by using Preprocessor::isBacktrackEnabled().
llvm-svn: 59631
Diffstat (limited to 'clang/lib/Lex/Preprocessor.cpp')
-rw-r--r-- | clang/lib/Lex/Preprocessor.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp index 2d4d3a7324d..5e973269945 100644 --- a/clang/lib/Lex/Preprocessor.cpp +++ b/clang/lib/Lex/Preprocessor.cpp @@ -69,7 +69,6 @@ Preprocessor::Preprocessor(Diagnostic &diags, const LangOptions &opts, InMacroArgs = false; NumCachedTokenLexers = 0; - CacheTokens = false; CachedLexPos = 0; // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro. |