I have the following problem:
class Base { }; class Derived : public Base { }; class Different { }; class X { public: template stat
Just typecast derived to base
X::func((Base*)&derived)
it works....