Change HashSet copy constructor from implicit to explicit.

This commit is contained in:
Lukas Tenbrink
2026-02-16 23:08:01 +01:00
parent 376903417d
commit c9249346c4
16 changed files with 31 additions and 28 deletions
+1 -1
View File
@@ -644,7 +644,7 @@ void GDScript::_update_exports_down(bool p_base_exports_changed) {
return;
}
HashSet<ObjectID> copy = inheriters_cache; //might get modified
HashSet<ObjectID> copy(inheriters_cache); //might get modified
for (const ObjectID &E : copy) {
Object *id = ObjectDB::get_instance(E);