diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-08-10 15:15:38 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-08-10 15:15:38 -0400 |
| commit | 8d3d5913129a8ede381462d5ad5e98f9c789e5c8 (patch) | |
| tree | 074e1fd4489710af0810e2a901106a7161467021 /builtins/types.c | |
| parent | cb6cebf12e2124503f0551bc1bf6b44f68d86746 (diff) | |
Add Sets to the language
Diffstat (limited to 'builtins/types.c')
| -rw-r--r-- | builtins/types.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtins/types.c b/builtins/types.c index 355473e9..4fb2c523 100644 --- a/builtins/types.c +++ b/builtins/types.c @@ -29,8 +29,8 @@ public const TypeInfo $TypeInfo = { .TypeInfoInfo.type_str="TypeInfo", }; -public const TypeInfo $Void = {.size=0, .align=0}; -public const TypeInfo $Abort = {.size=0, .align=0}; +public const TypeInfo $Void = {.size=0, .align=0, .tag=EmptyStruct}; +public const TypeInfo $Abort = {.size=0, .align=0, .tag=EmptyStruct}; public CORD Func$as_text(const void *fn, bool colorize, const TypeInfo *type) { |
