I have a legacy function that looks like this:
int Random() const { return var_ ? 4 : 0; }
and I need to call a function within that lega
const_cast(this)->newCall(4)
Only do this if you're certain newCall will not modify "this".