You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Syntax highlighting for C++ classes fails if base classes are declared on next line.
// This is highlighted correctly
class SomeClass : public BaseClass
{
};
// This has no syntax highlight for public BaseClass
class SomeClass
: public BaseClass
{
};
VSCode Version: 1.22.2
OS Version: Linux
The text was updated successfully, but these errors were encountered:
Syntax highlighting for C++ classes fails if base classes are declared on next line.
The text was updated successfully, but these errors were encountered: