aboutsummaryrefslogtreecommitdiff
path: root/core/runtime
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-09-08 12:02:25 +0100
committergingerBill <bill@gingerbill.org>2018-09-08 12:02:25 +0100
commit3cd6ae311df68c1ac8b4015ebf5eef694126a59b (patch)
tree11ef64b5c9187dfd1dfd3ee0d9d268eed84fea45 /core/runtime
parent26cfc0257dc891816d6bcdd311a6c348e1d9cdf5 (diff)
Parametric polymorphic union type
Diffstat (limited to 'core/runtime')
-rw-r--r--core/runtime/core.odin1
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,