]> granicus.if.org Git - clang/commitdiff
Make the destructor public. ddunbar, lemme know if you'd prefer a different
authorChandler Carruth <chandlerc@gmail.com>
Fri, 26 Feb 2010 08:51:12 +0000 (08:51 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Fri, 26 Feb 2010 08:51:12 +0000 (08:51 +0000)
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

include/clang/Frontend/CodeGenAction.h

index 642e02a2f7066ab4ba65c7abbc81fe520dde7fbe..a1e3c42075b6271a295baac088ac7e5f8c2e2d6d 100644 (file)
@@ -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();