diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-03-05 12:49:13 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-03-05 12:49:13 -0500 |
| commit | 103edd636205921e1afadd91a284f3ead22afcce (patch) | |
| tree | 915ca6ff044de32d419b2c399b8f0028105af9e6 /types.h | |
| parent | e29aa52460df6a5d3e78f7e466947bcdd7a3bbb0 (diff) | |
Fix cyclic structs/enums
Diffstat (limited to 'types.h')
| -rw-r--r-- | types.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |
