slynch8 / 10x

10x IDE/Editor
190 stars 34 forks source link

virtual inherited class #520 Reopen #561

Open all500234765 opened 2 years ago

all500234765 commented 2 years ago

Reopen for double inheritance

class Awwa {};
class Abba {};

class Akka: public virtual Awwa, public virtual Abba {
public:
void Func();
};

520

all500234765 commented 2 years ago

also might be good to check for triple inheritance too :D