Name: Anonymous 2011-01-31 15:59
why would you overload already existing operators in Sepples instead of inventing your own symbol or keyword to avoid confusion with non-overloaded standard operators?
template<typename MyAnus>
void hax(Anus& anus)
{
anus ^= 2;
anus ^= anus;
anus ^= 21;
}
MyAnus myAnus;
OpAnus opAnus;
hax(myAnus);
hax(opAnus);