[cfe-commits] r97166 - in /cfe/trunk: include/clang/Frontend/CodeGenAction.h lib/Frontend/CodeGenAction.cpp

Douglas Gregor dgregor at apple.com
Thu Feb 25 12:58:06 PST 2010


On Feb 25, 2010, at 12:37 PM, Daniel Dunbar wrote:

> Author: ddunbar
> Date: Thu Feb 25 14:37:44 2010
> New Revision: 97166
> 
> URL: http://llvm.org/viewvc/llvm-project?rev=97166&view=rev
> Log:
> Move ~CodeGenAction out-of-line.
> 
> Modified:
>    cfe/trunk/include/clang/Frontend/CodeGenAction.h
>    cfe/trunk/lib/Frontend/CodeGenAction.cpp
> 
> Modified: cfe/trunk/include/clang/Frontend/CodeGenAction.h
> URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Frontend/CodeGenAction.h?rev=97166&r1=97165&r2=97166&view=diff
> ==============================================================================
> --- cfe/trunk/include/clang/Frontend/CodeGenAction.h (original)
> +++ cfe/trunk/include/clang/Frontend/CodeGenAction.h Thu Feb 25 14:37:44 2010
> @@ -23,6 +23,7 @@
> 
> protected:
>   CodeGenAction(unsigned _Act);
> +  ~CodeGenAction();

This should be public (?). Clang won't diagnose it, but it's breaking with the GCC build.

	- Doug



More information about the cfe-commits mailing list