Given the code:class GDPerfClock
{
virtual TClock operator=( TClock tcNewBase );
};
class GDCountDown : public GDPerfClock
{
virtual TClock operator=( TClock tcNewBase );
};
TClock GDCountDown::operator=( TClock tcNewBase )
{
<watch this space>
}
and the snippet:$BaseClassName$::$MethodName$( $MethodArgs$ );
Inserting the snippet at '<watch this space>' results in: GDPerfClock::=( tcNewBase );
i.e., it fails to insert the keyword 'operator'.