Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 2.8.0-beta
-
None
-
39d000430ee3164a5c2cea8e22558c6f4fbbfc36
Description
In
#include <iostream> class Foo { Foo() : a(42), b(3.141) { std::cout << "Hallo"; } private: int a; float b; }; int main(int argc, char *argv[]) { return 0; }
Choose "Move definition outside class" over the Foo constructor, resulting in
#include <iostream> class Foo { Foo() : a(42), b(3.141); private: int a; float b; }; Foo::Foo() { std::cout << "Hallo"; } int main(int argc, char *argv[]) { return 0; }