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

Fix integer types.

This commit is contained in:
Bartosz Taudul
2020-10-02 19:30:01 +02:00
parent b98f6a138a
commit a2f0f7754d
3 changed files with 21 additions and 19 deletions
+2 -2
View File
@@ -3943,9 +3943,9 @@ int Worker::AddGhostZone( const VarArray<CallstackFrameId>& cs, Vector<GhostZone
tmp = &m_data.ghostChildren[back.child];
}
}
const uint64_t refBackTime = vec->empty() ? 0 : vec->back().end.Val();
const int64_t refBackTime = vec->empty() ? 0 : vec->back().end.Val();
int gcnt = 0;
int idx = 0;
size_t idx = 0;
while( !vec->empty() && idx < stack.size() )
{
auto& back = vec->back();