]> Nishi Git Mirror - gwion.git/commitdiff
:art: Remove late aray warning if emit_var
authorJérémie Astor <fennecdjay@gmail.com>
Thu, 12 Aug 2021 14:31:56 +0000 (16:31 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Thu, 12 Aug 2021 14:31:56 +0000 (16:31 +0200)
src/emit/emit.c

index cda5ffb051dc949480b0e6571a6667bcb2940752..39ac9849dea7e864569dbaba574a86c37f2a6c2c 100644 (file)
@@ -974,7 +974,7 @@ ANN static m_bool emit_decl(const Emitter emit, const Exp_Decl *decl) {
     }
     set_late(emit->gwion, decl, list->self);
     if ((GET_FLAG(array_base(v->type), abstract) && !GET_FLAG(decl->td, late) &&
-        GET_FLAG(v, late)) || late_array(decl->td, list->self)) {
+        GET_FLAG(v, late)) || (!exp_self(decl)->emit_var &&late_array(decl->td, list->self))) {
       env_warn(emit->env, decl->td->pos, _("Type '%s' is abstract, use {+G}late{0} instead of {G+}%s{0}"),
                v->type->name, !GET_FLAG(decl->td, const) ? "var" : "const");
     }