diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-08-31 19:28:21 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-31 19:28:21 -0700 |
| commit | 4c01a6553a1efef727b4f1cf7bb8dd9e53bd3cd5 (patch) | |
| tree | 122051721252ae70676f0be27b1978d8caf7bb48 /src/Type.zig | |
| parent | 3aa31ffd868973b202907e504ce8f38571887ee2 (diff) | |
| parent | ec36e0609fb97fef96e72fb76f5515b751519a61 (diff) | |
| download | zig-4c01a6553a1efef727b4f1cf7bb8dd9e53bd3cd5.tar.gz zig-4c01a6553a1efef727b4f1cf7bb8dd9e53bd3cd5.zip | |
Merge pull request #25088 from ziglang/delete-deprecated-fmt
std.fmt: delete deprecated APIs
Diffstat (limited to 'src/Type.zig')
| -rw-r--r-- | src/Type.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Type.zig b/src/Type.zig index d1685fe5a6..3cdd48c3f3 100644 --- a/src/Type.zig +++ b/src/Type.zig @@ -127,7 +127,7 @@ pub fn format(ty: Type, writer: *std.Io.Writer) !void { @compileError("do not format types directly; use either ty.fmtDebug() or ty.fmt()"); } -pub const Formatter = std.fmt.Formatter(Format, Format.default); +pub const Formatter = std.fmt.Alt(Format, Format.default); pub fn fmt(ty: Type, pt: Zcu.PerThread) Formatter { return .{ .data = .{ @@ -145,7 +145,7 @@ const Format = struct { } }; -pub fn fmtDebug(ty: Type) std.fmt.Formatter(Type, dump) { +pub fn fmtDebug(ty: Type) std.fmt.Alt(Type, dump) { return .{ .data = ty }; } |
