Sublime Forum

SUPER+R not working for C++ class with multiple inheritance

#1

SUPER+R window is failing to show definitions inside a class.

When I open the SUPER+R window, no symbols inside Test1 are shown. Symbols for Test2 are shown properly.

class Test1 : public Super1, public Super2
{
	void function();
};

class Test2 : public Super1
{
	void function();
};
0 Likes

#2

What version of sublime text are you using. I’m on st3 and it’s working properly

1 Like

#3

Ah… I was using version 2. I clicked to check for updates and it said I was using the most recent version. Didn’t even cross my mind that I was using old version.

Can confirm, works fine in version 3.

0 Likes