I have a C++ 14 project where my class is based on a template class as follows: class MyClass: public MyLib::MyBaseClass<MyClass> In MyBaseClass I have some methods marked virtual, and I am trying to override them in MyClass. Even though their definitions are identical, the compiler thinks they are different and reports error: error: ‘methodA’ ..
Recent Comments