Cleaning type hinting for assignments

This commit is contained in:
gingerBill
2018-08-14 19:33:42 +01:00
parent e1e4a916a5
commit 2d41a42f61
2 changed files with 7 additions and 7 deletions

View File

@@ -1122,7 +1122,7 @@ void check_stmt_internal(CheckerContext *ctx, Ast *node, u32 flags) {
}
}
check_assignment_arguments(ctx, lhs_operands, &rhs_operands, as->rhs, true);
check_assignment_arguments(ctx, lhs_operands, &rhs_operands, as->rhs);
isize rhs_count = rhs_operands.count;
for_array(i, rhs_operands) {