In a C++ project, if I have a .h file w/ class definition:
class foo {
long lastPrime() // Finds the last prime
{
return nextPrime(nextToLastPrime());
}
};
when I use Move Implementation to Source file on lastPrime(), the semi-colon is added after the comment, not after the paren.
I get
long lastPrime() // Finds the last prime;
and not
long lastPrime(); // Finds the last prime
I'm using VAX 10.5.1738.0.
John