[cfe-commits] r97223 - /cfe/trunk/include/clang/Frontend/CodeGenAction.h

Chandler Carruth chandlerc at gmail.com
Fri Feb 26 00:51:12 PST 2010


Author: chandlerc
Date: Fri Feb 26 02:51:12 2010
New Revision: 97223

URL: http://llvm.org/viewvc/llvm-project?rev=97223&view=rev
Log:
Make the destructor public. ddunbar, lemme know if you'd prefer a different
fix, just trying to get the build bots happy again.

Modified:
    cfe/trunk/include/clang/Frontend/CodeGenAction.h

Modified: cfe/trunk/include/clang/Frontend/CodeGenAction.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Frontend/CodeGenAction.h?rev=97223&r1=97222&r2=97223&view=diff
==============================================================================
--- cfe/trunk/include/clang/Frontend/CodeGenAction.h (original)
+++ cfe/trunk/include/clang/Frontend/CodeGenAction.h Fri Feb 26 02:51:12 2010
@@ -23,7 +23,6 @@
 
 protected:
   CodeGenAction(unsigned _Act);
-  ~CodeGenAction();
 
   virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
                                          llvm::StringRef InFile);
@@ -31,6 +30,8 @@
   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();





More information about the cfe-commits mailing list