mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 03:52:19 +02:00
Removed 'comptime evaluation canceled' error
This commit is contained in:
parent
f85a4317fc
commit
fd098f3e96
1 changed files with 6 additions and 1 deletions
|
@ -4983,7 +4983,12 @@ bool CeContext::Execute(CeFunction* startFunction, uint8* startStackPtr, uint8*
|
||||||
if (*fastFinishPtr)
|
if (*fastFinishPtr)
|
||||||
{
|
{
|
||||||
if (*cancelingPtr)
|
if (*cancelingPtr)
|
||||||
_Fail("Comptime evaluation canceled");
|
{
|
||||||
|
if ((mCurModule != NULL) && (mCurModule->mCurTypeInstance != NULL))
|
||||||
|
mCurModule->DeferRebuildType(mCurModule->mCurTypeInstance);
|
||||||
|
else
|
||||||
|
_Fail("Comptime evaluation canceled");
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue