porting bugs
This commit is contained in:
parent
3d1b74c9d0
commit
3730524733
|
|
@ -35,5 +35,6 @@
|
|||
#include <throw_event.h>
|
||||
|
||||
#include "config_downloader.h"
|
||||
#include "download_utils.h"
|
||||
#pragma hdrstop
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue