1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Fixed CheckSkipCall

This commit is contained in:
Brian Fiete 2022-09-05 05:46:57 -07:00
parent c65fd5711d
commit 1320b495d2

View file

@ -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;