]> Nishi Git Mirror - gwion.git/commitdiff
:art: Remove useless check
authorfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 11 Oct 2019 20:02:56 +0000 (22:02 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 11 Oct 2019 20:02:56 +0000 (22:02 +0200)
src/parse/check.c

index 592bd0bf8cf494d9d019d37de88aaf4c202f320d..b9c6bf23cb9cfb385ee8c7d26b189b554e46d58e 100644 (file)
@@ -794,8 +794,6 @@ ANN Type check_exp_call1(const Env env, const Exp_Call *exp) {
     return check_exp_call_template(env, (Exp_Call*)exp);
   const Func func = find_func_match(env, exp->func->type->e->d.func, exp->args);
   if((exp_self(exp)->d.exp_call.m_func = func)) {
-    if(func->value_ref->from->ctx && func->value_ref->from->ctx->error)
-      ERR_O(exp_self(exp)->pos, _("function '%s' is errored"), func->name)
     exp->func->type = func->value_ref->type;
     return func->def->base->ret_type;
   }