1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Boxing result change, warning on boxing obj, boxing generics

This commit is contained in:
Brian Fiete 2020-01-30 07:06:16 -08:00
parent 17fbd8f8d6
commit d6566982f2
4 changed files with 60 additions and 27 deletions

View file

@ -1579,7 +1579,7 @@ public:
Array<BfVirtualMethodEntry> mVirtualMethodTable;
BfHotTypeData* mHotTypeData;
int mVirtualMethodTableSize; // With hot reloading, mVirtualMethodTableSize can be larger than mInterfaceMethodTable (live vtable versioning)
Array<BfFieldInstance> mFieldInstances;
Array<BfFieldInstance> mFieldInstances;
Array<BfMethodInstance*> mInternalMethods;
Dictionary<BfTypeDef*, BfStaticSearch> mStaticSearchMap;
bool mHasStaticInitMethod;
@ -1744,7 +1744,7 @@ public:
};
public:
BfTypeInstance* mElementType;
BfType* mElementType;
BfBoxedType* mBoxedBaseType;
BoxedFlags mBoxedFlags;