I checked all the functions for base class and current and there is no virtual function without implementation.
And I also used 'nm -C mycode.o > log' and find there are no functions for my class is "V". But in the log I did get:
U typeinfo for mychild
V typeinfo for myparent
As the code is very large, not uploaded the code. And I am using gcc/4.8. Wondering
- is there any tool can help to give more information?
- except for forgetting implementation of a virtual function, is there any other common reason for such error?