Fix regression: the pointer index is still 64bit.
authorMilian Wolff <mail@milianw.de>
Wed, 9 Dec 2015 20:45:59 +0000 (21:45 +0100)
committerMilian Wolff <mail@milianw.de>
Wed, 9 Dec 2015 20:45:59 +0000 (21:45 +0100)
accumulatedtracedata.h

index 975d02c..f5c2709 100644 (file)
@@ -194,7 +194,7 @@ struct AccumulatedTraceData
 
     // indices of functions that should stop the backtrace, e.g. main or static initialization
     std::vector<StringIndex> stopIndices;
-    std::unordered_map<uint32_t, SmallAllocationInfo> activeSmallAllocations;
+    std::unordered_map<uint64_t, SmallAllocationInfo> activeSmallAllocations;
     std::unordered_map<uint64_t, BigAllocationInfo> activeBigAllocations;
     std::vector<InstructionPointer> instructionPointers;
     std::vector<TraceNode> traces;