Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
Qt Creator 2.6.0-rc, Qt Creator 14.0.0
-
None
Description
class MostBasic1 {}; class Base1 : public MostBasic1 {}; class Base2 : public Base1 {}; class Derived1 : public Base2 {}; class Derived2 : public Derived1, public Base1 {};
Gives the attached hierarchy.
Base2 as the second base should be MostBasic1 -> Base1 -> Base2