diff --git a/server/TracyWorker.cpp b/server/TracyWorker.cpp index 441c218f..7889fd9c 100644 --- a/server/TracyWorker.cpp +++ b/server/TracyWorker.cpp @@ -1680,7 +1680,7 @@ Worker::Worker( FileRead& f, EventType::Type eventMask, bool bgTasks ) Int24 size; f.Read9( symAddr, name, file, line, imageName, callFile, callLine, isInline, size ); m_data.symbolMap.emplace( symAddr, SymbolData { name, file, line, imageName, callFile, callLine, isInline, size } ); - if( !isInline) m_data.symbolLoc.push_back( SymbolLocation { symAddr, size.Val() } ); + if( !isInline ) m_data.symbolLoc.push_back( SymbolLocation { symAddr, size.Val() } ); } #ifdef NO_PARALLEL_SORT pdqsort_branchless( m_data.symbolLoc.begin(), m_data.symbolLoc.end(), [] ( const auto& l, const auto& r ) { return l.addr < r.addr; } );