| C++ error: undefined reference to vtable for |
|
| Monday, 22 November 2010 | |
|
C++ Error : undefined reference to vtable for ------------------------------------------------------ If you get: C++ Error : undefined reference to vtable for error when compiling your C++ code with g++ or clang++ then you either must declare your method in subclass and in base class too (supposing you have defined a virtual method in base class). Or you must make yourvirtual class pure (=0). |
| < Prev | Next > |
|---|
