mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Use Vector instead of std::vector for thread zone list.
This commit is contained in:
parent
8dabe47602
commit
ce2bf7c207
@ -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;
|
||||
|
||||
|
@ -170,7 +170,7 @@ private:
|
||||
struct {
|
||||
bool show;
|
||||
std::vector<int32_t> match;
|
||||
std::map<uint64_t, std::vector<ZoneEvent*>> threads;
|
||||
std::map<uint64_t, Vector<ZoneEvent*>> threads;
|
||||
size_t processed;
|
||||
int selMatch = 0;
|
||||
char pattern[1024] = { "" };
|
||||
|
Loading…
Reference in New Issue
Block a user