From: Benjamin Kramer Date: Tue, 6 Dec 2011 19:26:57 +0000 (+0000) Subject: Remove unused member to appease valgrind. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b80a3869b419c94ad85d2a39041c59100691bb3e;p=clang Remove unused member to appease valgrind. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145956 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Frontend/FrontendActions.h b/include/clang/Frontend/FrontendActions.h index c2bdc746ea..c41d40c8b6 100644 --- a/include/clang/Frontend/FrontendActions.h +++ b/include/clang/Frontend/FrontendActions.h @@ -69,14 +69,12 @@ protected: }; class GeneratePCHAction : public ASTFrontendAction { - bool MakeModule; - protected: virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI, StringRef InFile); - virtual TranslationUnitKind getTranslationUnitKind() { - return MakeModule? TU_Module : TU_Prefix; + virtual TranslationUnitKind getTranslationUnitKind() { + return TU_Prefix; } virtual bool hasASTFileSupport() const { return false; }