diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2021-07-25 12:52:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-25 12:52:58 +0200 |
| commit | ff0b5f8fa1be4ccd5b8de1d9d49f8a4b71439f63 (patch) | |
| tree | 42543cc85d27d2c8692a2ced4bac5c537e402004 /modules/mono/csharp_script.cpp | |
| parent | 2f221e5fd507b176590bda52d08e499629ce7761 (diff) | |
| parent | ac3322b0af8f23e8e2dac8111200bc69b5604c9f (diff) | |
| download | redot-engine-ff0b5f8fa1be4ccd5b8de1d9d49f8a4b71439f63.tar.gz | |
Merge pull request #50809 from akien-mga/iterators-const-references
Diffstat (limited to 'modules/mono/csharp_script.cpp')
| -rw-r--r-- | modules/mono/csharp_script.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 0eea0f543b..b52277974f 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -1731,7 +1731,7 @@ void CSharpInstance::get_properties_state_for_reloading(List<Pair<StringName, Va List<PropertyInfo> pinfo; get_property_list(&pinfo); - for (PropertyInfo &E : pinfo) { + for (const PropertyInfo &E : pinfo) { Pair<StringName, Variant> state_pair; state_pair.first = E.name; @@ -2313,7 +2313,7 @@ void CSharpScript::_update_exports_values(Map<StringName, Variant> &values, List values[E->key()] = E->get(); } - for (PropertyInfo &E : exported_members_cache) { + for (const PropertyInfo &E : exported_members_cache) { propnames.push_back(E); } } |
