mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Fixed CheckSkipCall
This commit is contained in:
parent
c65fd5711d
commit
1320b495d2
1 changed files with 1 additions and 1 deletions
|
@ -6185,7 +6185,7 @@ void BfExprEvaluator::CheckSkipCall(BfAstNode* targetSrc, SizedArrayImpl<BfResol
|
|||
{
|
||||
for (auto& argValue : argValues)
|
||||
{
|
||||
if (!argValue.IsDeferredValue())
|
||||
if ((!argValue.IsDeferredValue()) && (argValue.mExpression != NULL))
|
||||
{
|
||||
mModule->Fail("Illegal SkipCall invocation", targetSrc);
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue