porting bugs

This commit is contained in:
David Rose 2001-06-06 04:42:42 +00:00
parent 3d1b74c9d0
commit 3730524733
2 changed files with 3 additions and 2 deletions

View File

@ -35,5 +35,6 @@
#include <throw_event.h>
#include "config_downloader.h"
#include "download_utils.h"
#pragma hdrstop

View File

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