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
The C++11 specifiers final and override are missing in the C++ syntax file.
They are context specific keywords, so they must not always be classified as a keyword.
Ironically they are present in the C syntax file with some checks for the correct context.
This check fails for some cases though. These three are currently missing in Code:
classderivfinal : base {
voidmeth1() final;
voidmeth2() override;
}
final and override in class declarations
final classes ... GitHub seems to be missing that one too 😄
From @rielz on December 27, 2015 16:58
The C++11 specifiers
final
andoverride
are missing in the C++ syntax file.They are context specific keywords, so they must not always be classified as a keyword.
Ironically they are present in the C syntax file with some checks for the correct context.
This check fails for some cases though. These three are currently missing in Code:
Copied from original issue: microsoft/vscode#1669
The text was updated successfully, but these errors were encountered: