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

Fixed issue removing split global

This commit is contained in:
Brian Fiete 2020-08-13 13:12:00 -07:00
parent 9facb06d52
commit 685a036eb2

View file

@ -3188,6 +3188,18 @@ void BfCompiler::UpdateRevisedTypes()
}
}
}
else
{
// These may not get caught below if the composite project changes
for (auto checkTypeDef : compositeTypeDef->mPartials)
{
if (checkTypeDef->mDefState == BfTypeDef::DefState_Deleted)
{
partialsHadChanges = true;
hadSignatureChange = true;
}
}
}
// Collect the partials
BfSizedVector<BfTypeDef*, 8> typeParts;