mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 23:58:50 +00:00
This commit is contained in:
+3
-1
@@ -5629,7 +5629,9 @@ CALL_ARGUMENT_CHECKER(check_named_call_arguments) {
|
|||||||
defer ({
|
defer ({
|
||||||
for_array(i, ordered_operands) {
|
for_array(i, ordered_operands) {
|
||||||
Operand const &o = ordered_operands[i];
|
Operand const &o = ordered_operands[i];
|
||||||
call->viral_state_flags |= o.expr->viral_state_flags;
|
if (o.expr != nullptr) {
|
||||||
|
call->viral_state_flags |= o.expr->viral_state_flags;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user