Hi, here is a bug reported for version 10.6.1862.0 built 2011.12.13 :
On a method with a comment on the same line :
class Foo
{
public:
void Method() // I like putting comment on the same line
{
...
}
}
The Move Implementation to Source File will result in moving the method body, but will add ';' to end of the method declaration line, hence in the comment.
class Foo
{
public:
void Method() // I like putting comment on the same line;
}
Bye.