diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-12-08 13:59:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-08 13:59:46 +0100 |
commit | edb3686ee2379ad28d1273797db8bd9ded38ff1e (patch) | |
tree | 8ce43d22ff6d644a8b59b42b9f8d2003d03ef1a8 /modules/gdnative/pluginscript/pluginscript_language.cpp | |
parent | 360cfeedacba971b255c68f7e061f2356bdb3135 (diff) | |
parent | a2118129321e4e4868f0ef2dd2b21699a98a126e (diff) | |
download | redot-engine-edb3686ee2379ad28d1273797db8bd9ded38ff1e.tar.gz |
Merge pull request #44190 from touilleMan/constify-ScriptLanguage.can_inherit_from_file
Constify ScriptLanguage.can_inherit_from_file
Diffstat (limited to 'modules/gdnative/pluginscript/pluginscript_language.cpp')
-rw-r--r-- | modules/gdnative/pluginscript/pluginscript_language.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/pluginscript/pluginscript_language.cpp b/modules/gdnative/pluginscript/pluginscript_language.cpp index cef4f4358c..df685e716f 100644 --- a/modules/gdnative/pluginscript/pluginscript_language.cpp +++ b/modules/gdnative/pluginscript/pluginscript_language.cpp @@ -142,7 +142,7 @@ bool PluginScriptLanguage::supports_builtin_mode() const { return _desc.supports_builtin_mode; } -bool PluginScriptLanguage::can_inherit_from_file() { +bool PluginScriptLanguage::can_inherit_from_file() const { return _desc.can_inherit_from_file; } |