| ... | ... | @@ -912,7 +912,7 @@ fn formatFloatValue(value: anytype, comptime fmt: []const u8, options: FormatOpt |
| 912 | 912 | }; |
| 913 | 913 | const T = @TypeOf(v); |
| 914 | 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 | 916 | const DT = if (@bitSizeOf(T) <= 64) u64 else u128; |
| 917 | 917 | const tables = switch (DT) { |
| 918 | 918 | u64 => &std.fmt.float.Backend64_TablesFull, |