aboutsummaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-03-05 12:49:13 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-03-05 12:49:13 -0500
commit103edd636205921e1afadd91a284f3ead22afcce (patch)
tree915ca6ff044de32d419b2c399b8f0028105af9e6 /types.h
parente29aa52460df6a5d3e78f7e466947bcdd7a3bbb0 (diff)
Fix cyclic structs/enums
Diffstat (limited to 'types.h')
-rw-r--r--types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/types.h b/types.h
index 1a0e8edb..6226ab40 100644
--- a/types.h
+++ b/types.h
@@ -80,10 +80,12 @@ struct type_s {
struct {
const char *name;
arg_t *fields;
+ bool opaque;
} StructType;
struct {
const char *name;
tag_t *tags;
+ bool opaque;
} EnumType;
struct {
const char *name;