From aaeff48f2f7645d71744041b5da4f65850a522b6 Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 6 Oct 2017 12:54:47 +0100 Subject: [PATCH] Added "override" to the C++ tokeniser keywords --- .../code_editor/juce_CPlusPlusCodeTokeniserFunctions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniserFunctions.h b/modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniserFunctions.h index 9eb2d8d0d4..7769bcbe20 100644 --- a/modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniserFunctions.h +++ b/modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniserFunctions.h @@ -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;