aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/CodeGenAction.h
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2010-02-26 08:51:12 +0000
committerChandler Carruth <chandlerc@gmail.com>2010-02-26 08:51:12 +0000
commitf84df9f076038ad16e1ee412162c328cd091bc59 (patch)
tree45862cf2c463197dc73e1b20d41f09c361f5818e /include/clang/Frontend/CodeGenAction.h
parent8fc19872bc0921d8f7af25e91bf95afd7c7cd6df (diff)
Make the destructor public. ddunbar, lemme know if you'd prefer a different
fix, just trying to get the build bots happy again. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97223 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/CodeGenAction.h')
-rw-r--r--include/clang/Frontend/CodeGenAction.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Frontend/CodeGenAction.h b/include/clang/Frontend/CodeGenAction.h
index 642e02a2f7..a1e3c42075 100644
--- a/include/clang/Frontend/CodeGenAction.h
+++ b/include/clang/Frontend/CodeGenAction.h
@@ -23,7 +23,6 @@ private:
protected:
CodeGenAction(unsigned _Act);
- ~CodeGenAction();
virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
llvm::StringRef InFile);
@@ -31,6 +30,8 @@ protected:
virtual void EndSourceFileAction();
public:
+ ~CodeGenAction();
+
/// takeModule - Take the generated LLVM module, for use after the action has
/// been run. The result may be null on failure.
llvm::Module *takeModule();