mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 10:44:49 +01:00 
			
		
		
		
	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:
		
							parent
							
								
									5ba49f188b
								
							
						
					
					
						commit
						29cd40bded
					
				| @ -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); | ||||
| 
 | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user