Add support for allocator type in Dictionary
This commit is contained in:
@@ -293,7 +293,7 @@ public:
|
||||
/// <summary>
|
||||
/// The scripting types cache that maps the managed class to the scripting type index. Build after assembly is loaded and scripting types get the managed classes information.
|
||||
/// </summary>
|
||||
Dictionary<MonoClass*, int32> ClassToTypeIndex;
|
||||
Dictionary<MonoClass*, int32, HeapAllocation> ClassToTypeIndex;
|
||||
|
||||
static ScriptingObject* ManagedObjectSpawn(const ScriptingObjectSpawnParams& params);
|
||||
static MMethod* FindMethod(MClass* mclass, const ScriptingTypeMethodSignature& signature);
|
||||
|
||||
@@ -111,7 +111,7 @@ public:
|
||||
|
||||
public:
|
||||
|
||||
typedef Dictionary<Guid, Guid> IdsMappingTable;
|
||||
typedef Dictionary<Guid, Guid, HeapAllocation> IdsMappingTable;
|
||||
|
||||
/// <summary>
|
||||
/// The objects lookup identifier mapping used to override the object ids on FindObject call (used by the object references deserialization).
|
||||
|
||||
Reference in New Issue
Block a user