1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-27 02:20:05 +00:00

Added "override" to the C++ tokeniser keywords

This commit is contained in:
ed 2017-10-06 12:54:47 +01:00
parent 7d2f59909e
commit aaeff48f2f

View file

@ -74,7 +74,7 @@ struct CppTokeniserFunctions
"explicit", "namespace", "noexcept", "operator", "protected", "register", "reinterpret_cast",
"static_assert", "static_cast", "template", "thread_local", "typename", "unsigned", "volatile",
"@class", "@dynamic", "@end", "@implementation", "@interface", "@public", "@private",
"@protected", "@property", "@synthesize", "__fastcall", "__stdcall", nullptr };
"@protected", "@property", "@synthesize", "__fastcall", "__stdcall", "override", nullptr };
const char* const* k;