Change copy constructors of HashMap and AHashMap from implicit to explicit.
This commit is contained in:
parent
741fb8a306
commit
1825e89787
30 changed files with 34 additions and 35 deletions
|
|
@ -1123,7 +1123,7 @@ static void _list_available_types(bool p_inherit_only, GDScriptParser::Completio
|
|||
}
|
||||
|
||||
// Autoload singletons
|
||||
HashMap<StringName, ProjectSettings::AutoloadInfo> autoloads = ProjectSettings::get_singleton()->get_autoload_list();
|
||||
HashMap<StringName, ProjectSettings::AutoloadInfo> autoloads(ProjectSettings::get_singleton()->get_autoload_list());
|
||||
|
||||
for (const KeyValue<StringName, ProjectSettings::AutoloadInfo> &E : autoloads) {
|
||||
const ProjectSettings::AutoloadInfo &info = E.value;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue