Don't hash source location zones keys.

This commit is contained in:
Bartosz Taudul 2018-03-18 03:25:14 +01:00
parent 67774698af
commit 4baea4a74f

View File

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