Error when moving to source file with defaulted commented parameters
bool CVestment(
CCleric,
const SCleric &sp = SCleric( ) ///< Check it has been washed
)
{
return true;
}
is moved as ...
bool CVestment( CCleric, const SCleric &sp /*= SCleric( ) /*/< Check it has been washed */ )
{
return true;
}