A little unimportant error:
class test
{
test(int i) {int j;};
}
results after move implementation in
class test
{
test(int i);;
}
AND a second question: is there any way to avoid jumping to the implementaion file after using that refactoring. This is very annoying if I have to refactor a lot of functiion like that: I always have to switch back to the header file to get the next one.