]> Nishi Git Mirror - gwion.git/commitdiff
:shirt: Clean scan2_func_def
authorfennecdjay <astor.jeremie@wanadoo.fr>
Sat, 21 Sep 2019 10:08:22 +0000 (12:08 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Sat, 21 Sep 2019 10:08:28 +0000 (12:08 +0200)
src/parse/scan2.c

index 70666a1896c790ba6d67b51fdc827143ce685476..2ccebe1b6ce756136c2c0edb4d882a819c96af9a 100644 (file)
@@ -520,10 +520,6 @@ ANN2(1,2) m_bool scan2_fdef(const Env env, const Func_Def f, const Value overloa
 ANN m_bool scan2_func_def(const Env env, const Func_Def f) {
   const m_uint scope = !GET_FLAG(f, global) ? env->scope->depth : env_push_global(env);
   const Value overload = nspc_lookup_value0(env->curr, f->base->xid);
-  const Value res = nspc_lookup_value0(env->curr, f->base->xid);
-//  if(res && res->owner == env->global_nspc)
-//    ERR_B(f->pos, _("'%s' already declared as value of type '%s'."),
-//      res->name, res->type->name)
   f->stack_depth = (env->class_def && !GET_FLAG(f, static) && !GET_FLAG(f, global)) ? SZ_INT : 0;
   if(GET_FLAG(f, variadic))
     f->stack_depth += SZ_INT;