Consider these classes.
class Base { ... }; class Derived : public Base { ... };
this function
void BaseFoo( std::ve
If you dealing with a third-party library, and this is your only hope, then you can do this:
BaseFoo (*reinterpret_cast *>(&derived));
Otherwise fix your code with one of the other suggesstions.