1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Constify ScriptLanguage.can_inherit_from_file

This commit is contained in:
Emmanuel Leblond
2020-12-08 13:06:15 +01:00
parent d94de32579
commit a211812932
4 changed files with 4 additions and 4 deletions

View File

@@ -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;
}