mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 19:35:42 +00:00
refactor(Core): apply clang-tidy modernize-use-emplace (#3828)
This commit is contained in:
@@ -197,7 +197,7 @@ namespace MMAP
|
||||
|
||||
for (unsigned int i = 0; i < threads; ++i)
|
||||
{
|
||||
_workerThreads.push_back(std::thread(&MapBuilder::WorkerThread, this));
|
||||
_workerThreads.emplace_back(&MapBuilder::WorkerThread, this);
|
||||
}
|
||||
|
||||
m_tiles.sort([](MapTiles a, MapTiles b)
|
||||
|
||||
Reference in New Issue
Block a user