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
template <typename T>
struct bar{
int operator()(char x){
return 0;
}
};
struct foo:public bar<int>{
using bar<int>::operator();
};
seems to produce wrong syntax highlighting results for ollowing class/struct declarations/definations and endif macros. On my workspace(VSCode 0.10.8 with Dark+ (default dark) color scheme) it behaves like this:
Other macros including define, include, if and ifdef are not affected though.
From @gnaggnoyil on February 23, 2016 12:3
This piece of code:
seems to produce wrong syntax highlighting results for ollowing class/struct declarations/definations and endif macros. On my workspace(VSCode 0.10.8 with Dark+ (default dark) color scheme) it behaves like this:
Other macros including define, include, if and ifdef are not affected though.
Copied from original issue: microsoft/vscode#3315
The text was updated successfully, but these errors were encountered: