I want to call a specific operator of specific base class of some class. For simple functions it\'s easy: I just write SpecificBaseClass::function( args );. How sho
SpecificBaseClass::function( args );
Try with:
a.operator+(b);