From 1ea22f1779d42f4b7c297ec8d97cbdd0437983e1 Mon Sep 17 00:00:00 2001 From: Relintai Date: Tue, 21 Feb 2023 01:39:16 +0100 Subject: [PATCH] Fix an another inconsistent override warning. --- editor_modules/editor_code_editor/editor_syntax_highlighter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor_modules/editor_code_editor/editor_syntax_highlighter.h b/editor_modules/editor_code_editor/editor_syntax_highlighter.h index 5a4a85da2..44e1764ec 100644 --- a/editor_modules/editor_code_editor/editor_syntax_highlighter.h +++ b/editor_modules/editor_code_editor/editor_syntax_highlighter.h @@ -62,7 +62,7 @@ class EditorStandardSyntaxHighlighter : public EditorSyntaxHighlighter { public: virtual void _update_cache(); - virtual Dictionary _get_line_syntax_highlighting(int p_line) override { return highlighter->get_line_syntax_highlighting(p_line); } + virtual Dictionary _get_line_syntax_highlighting(int p_line) { return highlighter->get_line_syntax_highlighting(p_line); } virtual String _get_name() const { return TTR("Standard"); }