mirror of
https://github.com/godotengine/godot.git
synced 2025-10-22 01:13:39 +00:00
Merge pull request #44190 from touilleMan/constify-ScriptLanguage.can_inherit_from_file
Constify ScriptLanguage.can_inherit_from_file
This commit is contained in:
commit
edb3686ee2
4 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue