From: fennecdjay Date: Sun, 8 Jan 2023 13:43:11 +0000 (+0100) Subject: :bug: mark builtin compound types as compound X-Git-Tag: nightly~207^2~18 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=c2f0889444d1efd20488cdad22307e6451e21dea;p=gwion.git :bug: mark builtin compound types as compound --- diff --git a/src/import/import_cdef.c b/src/import/import_cdef.c index df6a7ccf..47c680b7 100644 --- a/src/import/import_cdef.c +++ b/src/import/import_cdef.c @@ -72,6 +72,7 @@ ANN static Type type_finish(const Gwi gwi, const Type t) { if(t->info->cdef && t->info->cdef->base.ext && t->info->cdef->base.ext->array) set_tflag(t, tflag_typedef); + set_tflag(t, tflag_compound); return t; }