[cfe-dev] [cfe-commits] r169670 - in /cfe/trunk: include/clang/AST/DeclCXX.h lib/AST/DeclCXX.cpp lib/Sema/SemaDeclCXX.cpp

Kim Gräsman kim.grasman at gmail.com
Sun Dec 9 06:01:34 PST 2012


Hi Matthieu,

On Sun, Dec 9, 2012 at 1:52 PM, Matthieu Monrocq
<matthieu.monrocq at gmail.com> wrote:
>
> I am not too well versed on the AST, but I can explain what multiple copy
> constructors are.
>
> The following *four* methods are copy constructors:
>
> Foo(Foo&);
> Foo(Foo const&);
> Foo(Foo volatile&);
> Foo(Foo const volatile&);

Thanks, that makes it clear what we should be looking for, at least.
Now to figure out how... :-)

- Kim



More information about the cfe-dev mailing list