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:
parent
98c36c45af
commit
086c7952a4
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue