aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler/std-docs.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-12-08 17:21:52 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-12-23 22:15:08 -0800
commit4218344dd3178f2fd3d9d00e9ff6895ee344df6d (patch)
tree38a1378b45349bcd182f6bdb721dadb275c1d02e /lib/compiler/std-docs.zig
parent950d18ef695bb7a28397e080dc3c201559ec4ee2 (diff)
downloadzig-4218344dd3178f2fd3d9d00e9ff6895ee344df6d.tar.gz
zig-4218344dd3178f2fd3d9d00e9ff6895ee344df6d.zip
std.Build.Cache: remove readSmallFile and writeSmallFile
These were to support optimizations involving detecting when to avoid calling into LLD, which are no longer implemented.
Diffstat (limited to 'lib/compiler/std-docs.zig')
-rw-r--r--lib/compiler/std-docs.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/std-docs.zig b/lib/compiler/std-docs.zig
index f1382e6eae..8f02f05958 100644
--- a/lib/compiler/std-docs.zig
+++ b/lib/compiler/std-docs.zig
@@ -233,7 +233,7 @@ fn serveSourcesTar(request: *std.http.Server.Request, context: *Context) !void {
.interface = std.Io.File.Reader.initInterface(&.{}),
.size = stat.size,
};
- try archiver.writeFile(entry.path, &file_reader, stat.mtime);
+ try archiver.writeFile(io, entry.path, &file_reader, stat.mtime);
}
{