Displaying 2 results from an estimated 2 matches for "3fcb122b".
2011 Oct 03
0
[LLVMdev] RTTI handling
...is warning was still experimental even a few months ago, and it's gotten a lot of attention on ToT. In particular, this case no longer warns.
John.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111003/3fcb122b/attachment.html>
2011 Oct 03
2
[LLVMdev] RTTI handling
On Oct 3, 2011, at 4:42 AM, Somorjai, Akos wrote:
> I'm trying to use this warning to check the vtable problem. Here's an example
>
> In mem.hpp
>
> class
> AA {
> // Construction / destruction:
> protected:
> AA ();
> AA (const AA&); // Disabled
> public:
> virtual ~AA ();
> };
>
> In mem.cpp
>
> #include "mem.hpp"
>