authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-03 21:51:29 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-03 21:58:17 -07:00
logffe79ea6bf3644a5eea097378febc24b01eebdc9
tree4aa739914a62aad12057708a45261ab2de394b42
parentecfdb8fd1dcc3c13c609f6ef8884185433f28cbf
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

update to zig 0.16.0


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

fmt.zig+1-1
...@@ -912,7 +912,7 @@ fn formatFloatValue(value: anytype, comptime fmt: []const u8, options: FormatOpt...@@ -912,7 +912,7 @@ fn formatFloatValue(value: anytype, comptime fmt: []const u8, options: FormatOpt
912 };912 };
913 const T = @TypeOf(v);913 const T = @TypeOf(v);
914 comptime std.debug.assert(@typeInfo(T) == .float);914 comptime std.debug.assert(@typeInfo(T) == .float);
915 const I = @Type(.{ .int = .{ .signedness = .unsigned, .bits = @bitSizeOf(T) } });915 const I = @Int(.unsigned, @bitSizeOf(T));
916 const DT = if (@bitSizeOf(T) <= 64) u64 else u128;916 const DT = if (@bitSizeOf(T) <= 64) u64 else u128;
917 const tables = switch (DT) {917 const tables = switch (DT) {
918 u64 => &std.fmt.float.Backend64_TablesFull,918 u64 => &std.fmt.float.Backend64_TablesFull,