authorgravatar for me@tadeo.caTadeo Kondrak <me@tadeo.ca> 2020-09-29 10:37:24-06:00
committergravatar for me@tadeo.caTadeo Kondrak <me@tadeo.ca> 2020-10-01 15:06:23-06:00
logec8f0777f23e4585b927c8d95994947b2b263051
tree2801e33b6a495525d86f0bc65295bec8a7fb2442
parente187ac09cbc23fedef40014f520b2e905033746b
signature Commit is signed but in an unrecognized format.

Update std.meta.Tuple for alignment in StructField/UnionField


1 files changed, 1 insertions(+), 0 deletions(-)

lib/std/meta.zig+1
...@@ -884,6 +884,7 @@ pub fn Tuple(comptime types: []const type) type {...@@ -884,6 +884,7 @@ pub fn Tuple(comptime types: []const type) type {
884 .field_type = T,884 .field_type = T,
885 .default_value = @as(?T, null),885 .default_value = @as(?T, null),
886 .is_comptime = false,886 .is_comptime = false,
887 .alignment = @alignOf(T),
887 };888 };
888 }889 }
889890