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

Cosmetics.

This commit is contained in:
Bartosz Taudul 2018-09-03 20:34:00 +02:00
parent e8b4f71f4a
commit b485aad2a3

View File

@ -4610,12 +4610,9 @@ void View::DrawFindZone()
for( i=m_findZone.sortedNum; i<zsz; i++ )
{
auto& zone = *zones[i].zone;
if( zone.end < 0 )
{
break;
}
if( zone.end < 0 ) break;
const auto t = zone.end - zone.start;
m_findZone.sorted.emplace_back( t );
vec.emplace_back( t );
total += t;
}
auto mid = vec.begin() + m_findZone.sortedNum;