Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syntax highlighting for C++ classes fails if base classes are declared on next line #48756

Closed
elpixo opened this issue Apr 26, 2018 · 1 comment
Assignees
Labels
languages-basic Basic language support issues

Comments

@elpixo
Copy link

elpixo commented Apr 26, 2018

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
@vscodebot vscodebot bot added the languages-basic Basic language support issues label Apr 26, 2018
@aeschli
Copy link
Contributor

aeschli commented May 2, 2018

This issue was moved to atom/language-c#274

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
languages-basic Basic language support issues
Projects
None yet
Development

No branches or pull requests

2 participants