class A { ... } class B : public virtual A { B( void ) : A( void ){ ... } } class C : public B { C( void ) : B(void ){ ... } }what is wrong ? ive asked myself
well... C class constructor should also invoke direct call to class A constructor. bleh... thats easy, isnt that... not for me hehe