mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Use emplace() instead of insert() where applicable for maps.
This commit is contained in:
@ -136,7 +136,7 @@ using namespace Gen;
|
||||
{
|
||||
for (const auto& e : b.linkData)
|
||||
{
|
||||
links_to.insert(std::pair<u32, int>(e.exitAddress, block_num));
|
||||
links_to.emplace(e.exitAddress, block_num);
|
||||
}
|
||||
|
||||
LinkBlock(block_num);
|
||||
|
Reference in New Issue
Block a user