From fbe9baeabc81b0e83b10ee1d8ba760a9755e25e6 Mon Sep 17 00:00:00 2001 From: Will Wilson <will@indefiant.com> Date: Mon, 12 May 2014 21:26:54 +0000 Subject: [PATCH] Remove unused PP variable NumIncluded git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@208633 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Lex/Preprocessor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/Lex/Preprocessor.h b/include/clang/Lex/Preprocessor.h index 33ffe7759f6..ec5c9756168 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -373,7 +373,7 @@ class Preprocessor : public RefCountedBase<Preprocessor> { llvm::DenseMap<IdentifierInfo*, std::vector<MacroInfo*> > PragmaPushMacroInfo; // Various statistics we track for performance analysis. - unsigned NumDirectives, NumIncluded, NumDefined, NumUndefined, NumPragma; + unsigned NumDirectives, NumDefined, NumUndefined, NumPragma; unsigned NumIf, NumElse, NumEndif; unsigned NumEnteredSourceFiles, MaxIncludeStackDepth; unsigned NumMacroExpanded, NumFnMacroExpanded, NumBuiltinMacroExpanded; -- GitLab