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

Fixed compile cancelling issue

This commit is contained in:
Brian Fiete 2022-03-17 11:26:48 -07:00
parent 98c36c45af
commit 086c7952a4

View file

@ -5639,7 +5639,7 @@ void BfCompiler::PopulateReified()
}
// Only check virtual stuff if we have been instantiated
if (typeInst->HasBeenInstantiated())
if ((typeInst->HasBeenInstantiated()) && (!mCanceling))
{
// If we have any virtual methods overrides that are unreified but the declaring virtual method is reified then we also need to reify
for (auto&& vEntry : typeInst->mVirtualMethodTable)