| ... | ... | @@ -756,8 +756,7 @@ pub fn formatInt(value: anytype, base: u8, case: Case, options: FormatOptions, w |
| 756 | 756 | fn formatValue(value: anytype, comptime fmt: []const u8, options: FormatOptions, writer: anytype) !void { |
| 757 | 757 | const T = @TypeOf(value); |
| 758 | 758 | switch (@typeInfo(T)) { |
| 759 | | // .float, .comptime_float => return formatFloatValue(value, fmt, options, writer), |
| 760 | | .float, .comptime_float => @compileError("TODO"), |
| 759 | .float, .comptime_float => return formatFloatValue(value, fmt, options, writer), |
| 761 | 760 | .int, .comptime_int => return formatIntValue(value, fmt, options, writer), |
| 762 | 761 | .bool => return formatBuf(if (value) "true" else "false", options, writer), |
| 763 | 762 | else => comptime unreachable, |