From f9f2413e69b9bd821c4e871f1ce46d3a5eafeb0c Mon Sep 17 00:00:00 2001 From: marxin Date: Tue, 2 Apr 2019 14:07:29 +0200 Subject: Fix -Wnon-virtual-dtor warnings. Example of the warning: ./core/script_language.h:198:7: warning: 'class ScriptCodeCompletionCache' has virtual functions and accessible non-virtual destructor [-Wnon-virtual-dtor] --- scene/gui/text_edit.h | 1 + 1 file changed, 1 insertion(+) (limited to 'scene/gui') diff --git a/scene/gui/text_edit.h b/scene/gui/text_edit.h index 95f1fbbee5..33f0a3f45d 100644 --- a/scene/gui/text_edit.h +++ b/scene/gui/text_edit.h @@ -683,6 +683,7 @@ protected: TextEdit *text_editor; public: + virtual ~SyntaxHighlighter() {} virtual void _update_cache() = 0; virtual Map _get_line_syntax_highlighting(int p_line) = 0; -- cgit v1.2.3