Loading...
tests/MallocBench/Benchmark.h libmalloc-140.50.6 libmalloc-116.30.3
--- libmalloc/libmalloc-140.50.6/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();