1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Fix std::move() usage.

This commit is contained in:
Bartosz Taudul
2023-04-16 16:47:47 +02:00
parent a0221c8660
commit f60e51c91b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6529,7 +6529,7 @@ void Worker::ProcessSymbolInformation( const QueueSymbolInformation& ev )
sd.callLine = it->second.line;
sd.isInline = it->second.isInline;
sd.size.SetVal( it->second.size );
m_data.symbolMap.emplace( ev.symAddr, std::move( sd ) );
m_data.symbolMap.emplace( ev.symAddr, sd );
if( m_codeTransfer && it->second.size > 0 && it->second.size <= 128*1024 )
{