int Random() const
{
return var_ ? const_cast<ClassType*>(this)->newCall(4) : 0;
}
But it’s not a good idea. Avoid if it’s possible!
int Random() const
{
return var_ ? const_cast<ClassType*>(this)->newCall(4) : 0;
}
But it’s not a good idea. Avoid if it’s possible!