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

Use Vector instead of std::vector for thread zone list.

This commit is contained in:
Bartosz Taudul
2018-03-18 21:15:31 +01:00
parent 8dabe47602
commit ce2bf7c207
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3160,7 +3160,7 @@ void View::DrawFindZone()
}
processed++;
m_findZone.threads[ev.thread].emplace_back( ev.zone );
m_findZone.threads[ev.thread].push_back( ev.zone );
}
m_findZone.processed = processed;