For an example:
class some_base
{
... // some valid code
};
class derived : public some_base
{
...
derived& operator=( const derived& that )
{
some_base::operator=( that );
...
return *this;
};
It'd be good if we were able to use some keyword in a derived's
assign operator instead of a some_base
qualifier. Compiler knows a type we inherit from so it's not a problem, in my opinion.
So the question is does С++ provides an auxiliary keyword to simplify the coder's life ?