summaryrefslogtreecommitdiffstats
path: root/include/clang/Lex/VariadicMacroSupport.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Lex/VariadicMacroSupport.h')
-rw-r--r--include/clang/Lex/VariadicMacroSupport.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/clang/Lex/VariadicMacroSupport.h b/include/clang/Lex/VariadicMacroSupport.h
index fae0063a4e..cebaf15187 100644
--- a/include/clang/Lex/VariadicMacroSupport.h
+++ b/include/clang/Lex/VariadicMacroSupport.h
@@ -69,8 +69,6 @@ namespace clang {
/// \brief A class for tracking whether we're inside a VA_OPT during a
/// traversal of the tokens of a variadic macro definition.
class VAOptDefinitionContext {
- Preprocessor &PP;
-
/// Contains all the locations of so far unmatched lparens.
SmallVector<SourceLocation, 8> UnmatchedOpeningParens;
@@ -79,7 +77,7 @@ namespace clang {
public:
VAOptDefinitionContext(Preprocessor &PP)
- : PP(PP), Ident__VA_OPT__(PP.Ident__VA_OPT__) {}
+ : Ident__VA_OPT__(PP.Ident__VA_OPT__) {}
bool isVAOptToken(const Token &T) const {
return Ident__VA_OPT__ && T.getIdentifierInfo() == Ident__VA_OPT__;