From c2f0889444d1efd20488cdad22307e6451e21dea Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Sun, 8 Jan 2023 14:43:11 +0100 Subject: [PATCH] :bug: mark builtin compound types as compound --- src/import/import_cdef.c | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.43.0