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 /lib/std/fs | |
| 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 'lib/std/fs')
| -rw-r--r-- | lib/std/fs/path.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/fs/path.zig b/lib/std/fs/path.zig index b63269abf4..9f5ed323f1 100644 --- a/lib/std/fs/path.zig +++ b/lib/std/fs/path.zig @@ -146,7 +146,7 @@ pub fn joinZ(allocator: Allocator, paths: []const []const u8) ![:0]u8 { return out[0 .. out.len - 1 :0]; } -pub fn fmtJoin(paths: []const []const u8) std.fmt.Formatter([]const []const u8, formatJoin) { +pub fn fmtJoin(paths: []const []const u8) std.fmt.Alt([]const []const u8, formatJoin) { return .{ .data = paths }; } |
