Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 5.0.2
-
None
-
-
49a8b021d968877c29c74833cefca8ed574f1cf9 (qt-creator/qt-creator/6.0)
Description
When using "Create implementations for Member functions" then pure virtual member functions are also implemented:
// Not ok: virtual bool method1(bool doCheck) = 0; // cpp: bool MyClass::method1(bool doCheck) {} // Ok: virtual bool method2(bool doCheck); // cpp: bool MyClass::method2(bool doCheck) {}