Browse Source

Added "override" to the C++ tokeniser keywords

tags/2021-05-28
ed 7 years ago
parent
commit
aaeff48f2f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniserFunctions.h

+ 1
- 1
modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniserFunctions.h 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;


Loading…
Cancel
Save