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

Comptime rebuild and hot compile fixes

This commit is contained in:
Brian Fiete 2022-01-13 11:40:14 -05:00
parent b49cd5d12a
commit 0c3f9a139d
9 changed files with 52 additions and 25 deletions

View file

@ -11195,9 +11195,9 @@ void BfExprEvaluator::Visit(BfDynamicCastExpression* dynCastExpr)
return;
}
if (autoComplete != NULL)
if (autoComplete != NULL)
{
mResult = mModule->GetDefaultTypedValue(targetType);
mResult = mModule->GetDefaultTypedValue(targetType, false, BfDefaultValueKind_Addr);
_CheckResult();
return;
}