aboutsummaryrefslogtreecommitdiff
path: root/src/Compilation.zig
diff options
context:
space:
mode:
authorkcbanner <kcbanner@gmail.com>2025-10-09 13:33:55 -0400
committerkcbanner <kcbanner@gmail.com>2025-10-09 13:34:25 -0400
commit2ce10e0838ea0ea6ba8a4a35e39936411a53e787 (patch)
tree6a7583c952510dd4ebe4b194130e5d5d15f15f2f /src/Compilation.zig
parent8b6cdc3d8224cf1e97a970f78281db2fcd14b7a2 (diff)
downloadzig-2ce10e0838ea0ea6ba8a4a35e39936411a53e787.tar.gz
zig-2ce10e0838ea0ea6ba8a4a35e39936411a53e787.zip
- aroDiagnosticsToErrorBundle: fixup not clearing notes after flushing the current error
- Compilation: renameTmpIntoCache doesn't need to be pub after the `translateC` change
Diffstat (limited to 'src/Compilation.zig')
-rw-r--r--src/Compilation.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig
index 3f22508238..b21b944a76 100644
--- a/src/Compilation.zig
+++ b/src/Compilation.zig
@@ -3398,7 +3398,7 @@ fn flush(
/// Linker backends which do not have this requirement can fall back to the simple
/// implementation at the bottom of this function.
/// This function is only called when CacheMode is `whole`.
-pub fn renameTmpIntoCache(
+fn renameTmpIntoCache(
cache_directory: Cache.Directory,
tmp_dir_sub_path: []const u8,
o_sub_path: []const u8,