I am trying to dynamic_cast, one virtual class, to another:
SomeClass::SomeFunc(_AListner& listner)
_BListner* listner = dynamic_cast<_BListner*>(&listner)
Please note that class _BListner is derived from class _AListner.
But I get this error on debugging:
SIGSEGV, Segmentaion fault.
<some address> in __dynamic_cast () from /usr/lib/libstdc++
SomeFunc()? Of particular interest is the lifetime oflistner. – hmjd Aug 2 '12 at 8:20Each name that [...] begins with an underscore followed by an uppercase letter is reserved to the implementation for any use.– BoBTFish Aug 2 '12 at 8:38