aboutsummaryrefslogtreecommitdiff
path: root/src/check_expr.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-11-24 10:57:25 +0000
committergingerBill <bill@gingerbill.org>2023-11-24 10:57:25 +0000
commit7343ed0cac431edf4e30fd8ba7e8aa0d4badd7cd (patch)
tree66f3bc26f73bd8f34accb21f99c1e0234bd90762 /src/check_expr.cpp
parent3102abf1aabdfff798cc0d2020c07c7138b59648 (diff)
parent490c8daeddfb2d940cbcdf265d098834111a9a2f (diff)
Merge branch 'master' of https://github.com/odin-lang/Odin
Diffstat (limited to 'src/check_expr.cpp')
-rw-r--r--src/check_expr.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp
index 7b90677c8..71accfb81 100644
--- a/src/check_expr.cpp
+++ b/src/check_expr.cpp
@@ -5606,9 +5606,6 @@ gb_internal CallArgumentError check_call_arguments_internal(CheckerContext *c, A
for (isize i = 0; i < pt->param_count; i++) {
if (!visited[i]) {
Entity *e = pt->params->Tuple.variables[i];
- if (is_blank_ident(e->token)) {
- continue;
- }
if (e->kind == Entity_Variable) {
if (e->Variable.param_value.kind != ParameterValue_Invalid) {
ordered_operands[i].mode = Addressing_Value;