This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Description
From @sillydan1 on December 6, 2016 23:19
- VSCode Version: 1.7.2
- OS Version: Debian 8.6 Jessie
In C/C++ highlighting assigns classes various different CSS tokens. It would give a much better overview of the code if classes was highlighted correctly.
Example:
class MyClass { };
MyClass mc = new MyClass();
the MyClass words get inconsistently highlighted.
Macros, when used like this, have inconsistent highlighting:
#define DLLEXPORT __attribute__((visibility("default")))
class DLLEXPORT MyClass { };
I believe these issues are connected.
Copied from original issue: microsoft/vscode#16768