summaryrefslogtreecommitdiffstats
path: root/core/script_language.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-04-02 18:25:02 +0200
committerGitHub <noreply@github.com>2019-04-02 18:25:02 +0200
commit25c1363a1167cc5833111e78e33b2561f1ceb76c (patch)
treecde76141329ed4ddeddd71c93c102431421bd482 /core/script_language.h
parentf5013e327769df7168e5f6bd68aa6309d2b825de (diff)
parentf9f2413e69b9bd821c4e871f1ce46d3a5eafeb0c (diff)
downloadredot-engine-25c1363a1167cc5833111e78e33b2561f1ceb76c.tar.gz
Merge pull request #27597 from marxin/fix-Wnon-virtual-dtor-warnings
Fix -Wnon-virtual-dtor warnings.
Diffstat (limited to 'core/script_language.h')
-rw-r--r--core/script_language.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/script_language.h b/core/script_language.h
index b6d7bea9c7..005e21e2cc 100644
--- a/core/script_language.h
+++ b/core/script_language.h
@@ -205,6 +205,8 @@ public:
static ScriptCodeCompletionCache *get_singleton() { return singleton; }
ScriptCodeCompletionCache();
+
+ virtual ~ScriptCodeCompletionCache() {}
};
class ScriptLanguage {