]> Nishi Git Mirror - gwion.git/commitdiff
:bug: Improve function alternative
authorJérémie Astor <fennecdjay@gmail.com>
Thu, 26 Aug 2021 12:46:14 +0000 (14:46 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Thu, 26 Aug 2021 12:46:14 +0000 (14:46 +0200)
src/parse/check.c

index 557f8325f7a149272bf61139c7f21f78cdf6abc0..b52b9175f35c10c49f43daee88a63f161fa0d521 100644 (file)
@@ -841,8 +841,7 @@ ANN Type check_exp_call1(const Env env, Exp_Call *const exp) {
     return func->def->base->ret_type != env->gwion->type[et_auto] ?
       func->def->base->ret_type : exp->func->d.exp_dot.base->type;
   }
-  const loc_t pos = exp->args ? exp->args->pos : exp->func->pos;
-  function_alternative(env, exp->func->type, exp->args, pos);
+  function_alternative(env, exp->func->type, exp->args, exp->func->pos);
   return NULL;
 }