1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-07 15:33:52 +00:00

Use Vector for source location expand storage.

This commit is contained in:
Bartosz Taudul 2018-03-04 16:32:51 +01:00
parent f99c6eec78
commit f8c5f28372

View File

@ -53,7 +53,7 @@ class Worker
flat_hash_map<uint64_t, SourceLocation, nohash<uint64_t>> sourceLocation;
Vector<SourceLocation*> sourceLocationPayload;
flat_hash_map<SourceLocation*, uint32_t, SourceLocationHasher, SourceLocationComparator> sourceLocationPayloadMap;
std::vector<uint64_t> sourceLocationExpand;
Vector<uint64_t> sourceLocationExpand;
std::map<uint32_t, LockMap> lockMap;
};