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
If a comment or macro exists anywhere after the class keyword and before the last parent class, the highlighting of parent classes and access specifiers is lost.
Examples:
The text was updated successfully, but these errors were encountered:
With the first pattern, the grammar has no way of knowing that DLLEXPORT is actually __declspec(dllexport). class __declspec(dllexport) ChildClass should be highlighted correctly, however.
Alignas is fixed. `DLLEXPORT` isn't fixed, but it doesn't cause a cascading break anymore. Since DLLEXPORT isn't a built in I don't plan to support it directly. OS/Library specific things (within textmate) would be a best fixed by a grammar injection extension so that people can toggle it on and off.
If a comment or macro exists anywhere after the
class
keyword and before the last parent class, the highlighting of parent classes and access specifiers is lost.Examples:
The text was updated successfully, but these errors were encountered: