]> Nishi Git Mirror - gwion.git/commitdiff
:art: Improve cyclic decl message
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Sat, 9 May 2020 19:25:08 +0000 (21:25 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Sat, 9 May 2020 19:25:08 +0000 (21:25 +0200)
src/parse/scan1.c

index c3325ba2daab9e18fd2cb5ee62601f516f00e69b..3a6d978f945919cbdc5294f0f4a05b3c45f95002 100644 (file)
@@ -13,7 +13,7 @@ ANN static inline m_bool type_cyclic(const Env env, const Type t, const Type_Dec
   Type parent = t->e->parent;
   while(parent) {
     if(parent == env->class_def)
-      ERR_B(td_pos(td), _("%s declared inside %s\n. (make it a ref ?)"), t->name, t == env->class_def ? "itself" : env->class_def->name);
+      ERR_B(td_pos(td), _("%s declared inside %s\n."), t->name, t == env->class_def ? "itself" : env->class_def->name);
     parent = parent->e->parent;
   }
   return GW_OK;