1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Fixed const eval dependency issues

This commit is contained in:
Brian Fiete 2020-12-31 11:31:19 -08:00
parent fa65029dfa
commit 86b5e65015
9 changed files with 82 additions and 22 deletions

View file

@ -3053,6 +3053,8 @@ void BfSystem::FinishCompositePartial(BfTypeDef* compositeTypeDef)
compositeTypeDef->mDefState = BfTypeDef::DefState_InlinedInternals_Changed;
else if ((nextRevision->mDefState == BfTypeDef::DefState_Internals_Changed) || (compositeTypeDef->mFullHash != nextRevision->mFullHash))
compositeTypeDef->mDefState = BfTypeDef::DefState_Internals_Changed;
else if (nextRevision->mDefState == BfTypeDef::DefState_Refresh)
compositeTypeDef->mDefState = BfTypeDef::DefState_Refresh;
//InjectNewRevision(compositeTypeDef);
VerifyTypeDef(compositeTypeDef);