mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Fix assert condition.
This commit is contained in:
parent
7797557e8c
commit
ac29cffd3a
@ -7107,7 +7107,7 @@ void Worker::ReconstructContextSwitchUsage()
|
|||||||
if( !cpus[i].it->IsEndValid() )
|
if( !cpus[i].it->IsEndValid() )
|
||||||
{
|
{
|
||||||
cpus[i].it++;
|
cpus[i].it++;
|
||||||
assert( cpus[i].it = cpus[i].end );
|
assert( cpus[i].it == cpus[i].end );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user