From f21fc700bb5e37a653142b0ecd142f1ae3132c5c Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 22 Mar 2024 01:52:00 -0400 Subject: Handle type namespaces in other modules --- types.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'types.h') diff --git a/types.h b/types.h index 83d8ca6a..df913de5 100644 --- a/types.h +++ b/types.h @@ -67,6 +67,7 @@ struct type_s { } NumType; struct { const char *lang; + struct env_s *env; } TextType; struct { type_t *item_type; @@ -89,11 +90,13 @@ struct type_s { const char *name; arg_t *fields; bool opaque; + struct env_s *env; } StructType; struct { const char *name; tag_t *tags; bool opaque; + struct env_s *env; } EnumType; struct { const char *name; -- cgit v1.2.3