Loading...
--- libmalloc/libmalloc-166.200.60/tests/MallocBench/Benchmark.h
+++ libmalloc/libmalloc-116.30.3/tests/MallocBench/Benchmark.h
@@ -38,25 +38,22 @@
Memory()
: resident()
, residentMax()
- , physicalFootprint()
{
}
- Memory(size_t resident, size_t residentMax, size_t physicalFootprint)
+ Memory(size_t resident, size_t residentMax)
: resident(resident)
, residentMax(residentMax)
- , physicalFootprint(physicalFootprint)
{
}
Memory operator-(const Memory& other)
{
- return Memory(resident - other.resident, residentMax - other.residentMax, physicalFootprint - other.physicalFootprint);
+ return Memory(resident - other.resident, residentMax - other.residentMax);
}
size_t resident;
size_t residentMax;
- size_t physicalFootprint;
};
static double currentTimeMS();