diff options
| author | gingerBill <bill@gingerbill.org> | 2018-09-08 12:02:25 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-09-08 12:02:25 +0100 |
| commit | 3cd6ae311df68c1ac8b4015ebf5eef694126a59b (patch) | |
| tree | 11ef64b5c9187dfd1dfd3ee0d9d268eed84fea45 /core/runtime | |
| parent | 26cfc0257dc891816d6bcdd311a6c348e1d9cdf5 (diff) | |
Parametric polymorphic union type
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/core.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin index 4e3ef0c18..df4dde9f9 100644 --- a/core/runtime/core.odin +++ b/core/runtime/core.odin @@ -82,6 +82,7 @@ Type_Info_Union :: struct { variants: []^Type_Info, tag_offset: uintptr, tag_type: ^Type_Info, + custom_align: bool, }; Type_Info_Enum :: struct { base: ^Type_Info, |