lm: Make use of insert_or_assign() in Log()

Avoids unnecessary default construction of an entry in cases where no
entry exists before overwriting the created entry.
This commit is contained in:
Lioncash 2021-04-23 09:27:15 -04:00
parent 5ba49f188b
commit 29cd40bded

View File

@ -105,7 +105,7 @@ private:
if (True(header.flags & LogPacketFlags::Head)) {
std::vector<u8> tmp(data.size() - sizeof(LogPacketHeader));
std::memcpy(tmp.data(), data.data() + offset, tmp.size());
entries[entry] = std::move(tmp);
entries.insert_or_assign(entry, std::move(tmp));
} else {
const auto entry_iter = entries.find(entry);