mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Outer loop check is no longer needed.
This commit is contained in:
parent
25e9ae4b68
commit
591da109a8
@ -2306,7 +2306,7 @@ int View::DrawLocks( uint64_t tid, bool hover, double pxns, const ImVec2& wpos,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
while( vbegin < vend )
|
for(;;)
|
||||||
{
|
{
|
||||||
while( vbegin < vend && ( state == LockState::Nothing || ( m_onlyContendedLocks && state == LockState::HasLock ) ) )
|
while( vbegin < vend && ( state == LockState::Nothing || ( m_onlyContendedLocks && state == LockState::HasLock ) ) )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user