aboutsummaryrefslogtreecommitdiff
path: root/src/check_stmt.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-08-14 19:33:42 +0100
committergingerBill <bill@gingerbill.org>2018-08-14 19:33:42 +0100
commit2d41a42f61b28cc046321f88b2ab990abd2e1bec (patch)
tree73c850e5f368c98e96fac47d9f76f24dc53bc3a4 /src/check_stmt.cpp
parente1e4a916a5ffb81b4a9fbe6a2ca146db17c42bc8 (diff)
Cleaning type hinting for assignments
Diffstat (limited to 'src/check_stmt.cpp')
-rw-r--r--src/check_stmt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_stmt.cpp b/src/check_stmt.cpp
index 1475d7b03..2040471b5 100644
--- a/src/check_stmt.cpp
+++ b/src/check_stmt.cpp
@@ -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) {