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

Fix assert.

This commit is contained in:
Bartosz Taudul 2021-06-16 01:39:43 +02:00
parent 538cf3bcf1
commit f145ca5897
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -5874,7 +5874,7 @@ void Worker::ProcessCallstackSampleImpl( const SampleData& sd, ThreadData& td, i
}
else
{
assert( td->samples.back().time.Val() < t );
assert( td.samples.back().time.Val() < t );
td.samples.push_back_non_empty( sd );
}