From: Milian Wolff Date: Wed, 9 Dec 2015 20:45:59 +0000 (+0100) Subject: Fix regression: the pointer index is still 64bit. X-Git-Tag: submit/tizen/20180620.112952^2~248 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7f7696ef57f6fdf8d68aad29426d795c1ed9ba39;p=sdk%2Ftools%2Fheaptrack.git Fix regression: the pointer index is still 64bit. --- diff --git a/accumulatedtracedata.h b/accumulatedtracedata.h index 975d02c..f5c2709 100644 --- a/accumulatedtracedata.h +++ b/accumulatedtracedata.h @@ -194,7 +194,7 @@ struct AccumulatedTraceData // indices of functions that should stop the backtrace, e.g. main or static initialization std::vector stopIndices; - std::unordered_map activeSmallAllocations; + std::unordered_map activeSmallAllocations; std::unordered_map activeBigAllocations; std::vector instructionPointers; std::vector traces;