From d254b440f8359b42a097edfeb2db1585fd20c695 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 11 Mar 2025 13:09:15 -0400 Subject: [PATCH] Rearrange fields --- types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types.h b/types.h index 1f39f53..e72aa3e 100644 --- a/types.h +++ b/types.h @@ -107,14 +107,14 @@ struct type_s { struct { const char *name; arg_t *fields; - bool opaque; struct env_s *env; + bool opaque; } StructType; struct { const char *name; tag_t *tags; - bool opaque; struct env_s *env; + bool opaque; } EnumType; struct { type_t *type;