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]

(cherry picked from commit f9f2413e69)
This commit is contained in:
marxin
2019-04-02 14:07:29 +02:00
committed by Rémi Verschelde
parent 4eefd2d581
commit 4889c65922
3 changed files with 4 additions and 1 deletions

View File

@ -683,6 +683,7 @@ protected:
TextEdit *text_editor;
public:
virtual ~SyntaxHighlighter() {}
virtual void _update_cache() = 0;
virtual Map<int, TextEdit::HighlighterInfo> _get_line_syntax_highlighting(int p_line) = 0;