David Rose 24 years ago
parent
commit
aca639e936
1 changed files with 2 additions and 2 deletions
  1. 2 2
      panda/src/express/memoryUsage.h

+ 2 - 2
panda/src/express/memoryUsage.h

@@ -125,7 +125,7 @@ private:
   static MemoryUsage *_global_ptr;
 
   // Cannot use a pmap, since that would be recursive!
-  typedef pmap<void *, MemoryInfo> Table;
+  typedef map<void *, MemoryInfo> Table;
   Table _table;
   int _freeze_index;
   int _count;
@@ -140,7 +140,7 @@ private:
 
   private:
     // Cannot use a pmap, since that would be recursive!
-    typedef pmap<TypeHandle, MemoryUsagePointerCounts> Counts;
+    typedef map<TypeHandle, MemoryUsagePointerCounts> Counts;
     Counts _counts;
   };
   TypeHistogram _trend_types;