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

Improved virtual overrides in extensions

This commit is contained in:
Brian Fiete 2022-05-07 11:40:55 -07:00
parent 8a84647bcd
commit e1d7939081
11 changed files with 116 additions and 11 deletions

View file

@ -1225,7 +1225,8 @@ void BfContext::RebuildType(BfType* type, bool deleteOnDemandTypes, bool rebuild
delete typeInst->mAttributeData;
typeInst->mAttributeData = NULL;
typeInst->mVirtualMethodTableSize = 0;
typeInst->mVirtualMethodTable.Clear();
typeInst->mVirtualMethodTable.Clear();
typeInst->mReifyMethodDependencies.Clear();
typeInst->mSize = -1;
typeInst->mAlign = -1;
typeInst->mInstSize = -1;