mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 22:34:09 +02:00
Fix for mid-compile rebuild chain from on-demand type
This commit is contained in:
parent
3b412719fe
commit
252f790525
1 changed files with 5 additions and 2 deletions
|
@ -1817,8 +1817,11 @@ void BfContext::DeleteType(BfType* type, bool deferDepRebuilds)
|
||||||
}
|
}
|
||||||
|
|
||||||
for (auto dependentType : rebuildTypeQueue)
|
for (auto dependentType : rebuildTypeQueue)
|
||||||
|
{
|
||||||
|
if (dependentType->mRevision != mCompiler->mRevision)
|
||||||
RebuildType(dependentType);
|
RebuildType(dependentType);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void BfContext::UpdateAfterDeletingTypes()
|
void BfContext::UpdateAfterDeletingTypes()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue