1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Fixed mixin crash

This commit is contained in:
Brian Fiete 2020-06-23 07:41:15 -07:00
parent 01d52131df
commit 26205eefcd

View file

@ -13738,6 +13738,9 @@ void BfExprEvaluator::InjectMixin(BfAstNode* targetSrc, BfTypedValue target, boo
}
argValue = arg->mTypedValue;
}
if (!argValue)
continue;
localVar->mResolvedType = argValue.mType;
if (argValue.mType->IsRef())