I hava a segmentation fault. debug with gdb, the first frame in the stack is
in the typeinfo for MyClass()
does someone know something about the typeinfo ?
|
I hava a segmentation fault. debug with gdb, the first frame in the stack is in the typeinfo for MyClass() does someone know something about the typeinfo ? | |||
|
feedback
|
|
I suspect that the typeinfo being the top of the frame is totally a red herring in this case. You need to go up the callstack until you find your own code and look in more detail at that point. Almost certainly you're trying to get typeinfo from a null pointer but it's somewhat possible it's just a garbage pointer value (which would be less obvious). | |||
|
feedback
|
|
RTTI only applies to classes with at least a virtual method, so make sure you have one. Also, remember that you can use RTTI directly (dynamic_cast, typeinfo, typeid) ou indirectly (catch is or can be implemented in terms of dynamic_cast). | |||
|
feedback
|
typeinfoortypeid? – Armen Tsirunyan Mar 18 '11 at 14:45-fno-rttiare you? – Rup Mar 18 '11 at 14:47typeid(). How does it become invalid - with information you've provided, it's anyone's guess. – atzz Mar 18 '11 at 15:39