Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 3.3.0, Qt Creator 4.8.0-beta1
-
OpenSUSE x64
-
51bc18e6d5f44268c86d3b18559cebedae67722b (qt-creator/qt-creator/4.8)
Description
*.hpp:
class X { public: X& operator=( X&& src); }
I choose "Add definition in *.cpp" an get (in *.cpp):
X&&X::operator=(X&& src)
{
}
The lack of spacing I can live with, but the return type is incorrect.