mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 00:50:25 +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
|
// 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
|
// 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)
|
for (auto&& vEntry : typeInst->mVirtualMethodTable)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue