« Return to Thread: multiple inheritance

multiple inheritance

by darkskill :: Rate this Message:

Reply to Author | View in Thread

Hi,

gdb crashed when I set a breakpoint at the last line of these :

struct A
{
    virtual A * me2()
            { return this; }
};
 
struct B
{
    virtual B * me() { return this; };
};
 
 
struct C : public A, public B
{
    C * me() {return this; }
    C * me2() {return this; }
};
 
C test;


How come ?

 « Return to Thread: multiple inheritance