1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Fixed warning

This commit is contained in:
Brian Fiete 2020-08-29 14:18:16 -07:00
parent c49d92b779
commit 7b3b6c1c10

View file

@ -104,7 +104,7 @@ namespace System.Reflection
#if BF_ENABLE_OBJECT_DEBUG_FLAGS
obj = Internal.Dbg_ObjectAlloc(mTypeClassVData, mInstSize, mInstAlign, 1);
#else
void* mem = new [Align(16)] uint8[mInstSize]* {?};
void* mem = new [Align(16)] uint8[mInstSize]* (?);
obj = Internal.UnsafeCastToObject(mem);
obj.[Friend]mClassVData = (.)(void*)mTypeClassVData;
#endif