Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P3: Somewhat important
-
Resolution: Done
-
Affects Version/s: Qt Creator 5.0.2
-
Fix Version/s: Qt Creator 6.0.0-beta2
-
Component/s: C/C++/Obj-C++ Support
-
Labels:None
-
Platform/s:
-
Commits: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) {}