Latest VAX, VS2008 SP1, C++, WinXP SP2
"Moving implementation to source" on a inlined constructor does not remove the "inline" keyword.
write down in your header:
class foo
{
public:
inline foo()
{
// some code
}
}
Now move cursor to constructor "foo" and "Move implementation to source", that results in
class foo
{
public:
inline foo();
}