fix(Core/World): -Wrange-loop-analysis warning (#6853)
This commit is contained in:
parent
4103fca5a4
commit
f6c0b0b6c8
1 changed files with 3 additions and 1 deletions
|
|
@ -1490,8 +1490,10 @@ void World::SetInitialWorldSettings()
|
|||
sIPLocation->Load();
|
||||
|
||||
std::vector<uint32> mapIds;
|
||||
for (auto const& map : sMapStore)
|
||||
for (auto const map : sMapStore)
|
||||
{
|
||||
mapIds.emplace_back(map->MapID);
|
||||
}
|
||||
|
||||
vmmgr2->InitializeThreadUnsafe(mapIds);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue