Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 2.8.0-beta
-
None
-
1738ff64a6b8efa571567a9ed58716b895a931b3
Description
Original:
struct Foo
{
int foo()
{
}
};
After applying the quick fix:
struct Foo { int foo(); }; int Foo::foo() { }