I'm using Base class with protected data member, virtual Dtor and virtual
method fu who use it. A derived class inherits public. Got virtual Dtor and
fu who is using Base::fu. This causes C2248 from both fu and Dtor. This is a
compiler bug. I do not got /Za as solution directive.
I don't like to change my design, can I overcome this problem?
Do Microsoft force me to use copy+ past as a code reuse?