..I put a breakpoint in my sourcecode, it doesn't manage to stop on that line...this happens (unfortunately) very often when using gdb
Any advice ?one technique which works sometimes is to set a breakpoint in the dllhelper and start debugging.
__asm("int3");
class A
{
protected :
int a;
};
class B : public A
{
public :
int b;
}