Once more: operators
Using "Move Implementation" on operators leaves out the "operator" keyword.
(and in one case it also added a */ without reason)
code to test:
class xyz
{
bool operator==(const iterator& _Right) const
{ // test for iterator equality
return (_it == _Right._it);
}
}
will produce after "Move":
bool xyz::iterator::==(const iterator& _Right*/) const
{
// test for iterator equality
return (_it == _Right._it);
}