From ffe79ea6bf3644a5eea097378febc24b01eebdc9 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Wed, 3 Jun 2026 21:51:29 -0700 Subject: [PATCH] update to zig 0.16.0 --- fmt.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt.zig b/fmt.zig index 5ae1ce68559cd9dab3d09c4656c144a37c255f42..4303ec19a11e9be9c828776821539671cb688bc2 100644 --- a/fmt.zig +++ b/fmt.zig @@ -912,7 +912,7 @@ fn formatFloatValue(value: anytype, comptime fmt: []const u8, options: FormatOpt }; const T = @TypeOf(v); comptime std.debug.assert(@typeInfo(T) == .float); - const I = @Type(.{ .int = .{ .signedness = .unsigned, .bits = @bitSizeOf(T) } }); + const I = @Int(.unsigned, @bitSizeOf(T)); const DT = if (@bitSizeOf(T) <= 64) u64 else u128; const tables = switch (DT) { u64 => &std.fmt.float.Backend64_TablesFull, -- 2.54.0