]> Nishi Git Mirror - gwion.git/commitdiff
:art: Resolve senseless check
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Tue, 15 Sep 2020 23:44:50 +0000 (01:44 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Tue, 15 Sep 2020 23:44:50 +0000 (01:44 +0200)
src/parse/check.c

index 0a763dfa7e3de487310443473f2c837df3b53826..8c1b5562bf7b94551a1fc87427fa99db14b2e5f7 100644 (file)
@@ -786,8 +786,6 @@ ANN static Type check_lambda_call(const Env env, const Exp_Call *exp) {
 }
 
 ANN Type check_exp_call1(const Env env, const Exp_Call *exp) {
-  if(exp->func->exp_type == ae_exp_decl)
-    ERR_O(exp_self(exp)->pos, _("It makes no sense to call a function pointer at declaration"))
   CHECK_OO(check_exp(env, exp->func))
   if(isa(exp->func->info->type, env->gwion->type[et_function]) < 0) {
     // use func flag?