mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Use proper type for iteration.
This commit is contained in:
parent
1ea647a1dd
commit
70a7033a64
@ -1740,7 +1740,7 @@ void View::DrawZones()
|
||||
if( threadData.size() != m_threadOrder.size() )
|
||||
{
|
||||
m_threadOrder.reserve( threadData.size() );
|
||||
for( int i=m_threadOrder.size(); i<threadData.size(); i++ )
|
||||
for( size_t i=m_threadOrder.size(); i<threadData.size(); i++ )
|
||||
{
|
||||
m_threadOrder.push_back( threadData[i] );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user