aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Io.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-07-20 17:05:57 -0700
committerAndrew Kelley <andrew@ziglang.org>2025-07-22 09:41:43 -0700
commitabed0f5129c5e03fce61c5c48cdc4bb396805ce2 (patch)
tree2801f2b1ddf7413528e19040a79c4492d361b7d6 /lib/std/Io.zig
parenta3efdd7279179de9591e62cab38bafdafd7e4814 (diff)
downloadzig-abed0f5129c5e03fce61c5c48cdc4bb396805ce2.tar.gz
zig-abed0f5129c5e03fce61c5c48cdc4bb396805ce2.zip
std.Io: delete BufferedAtomicFile
this is now redundant
Diffstat (limited to 'lib/std/Io.zig')
-rw-r--r--lib/std/Io.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/std/Io.zig b/lib/std/Io.zig
index cc79ecade5..26838517cd 100644
--- a/lib/std/Io.zig
+++ b/lib/std/Io.zig
@@ -471,8 +471,6 @@ pub const changeDetectionStream = @import("Io/change_detection_stream.zig").chan
pub const FindByteWriter = @import("Io/find_byte_writer.zig").FindByteWriter;
pub const findByteWriter = @import("Io/find_byte_writer.zig").findByteWriter;
-pub const BufferedAtomicFile = @import("Io/buffered_atomic_file.zig").BufferedAtomicFile;
-
pub const tty = @import("Io/tty.zig");
/// A Writer that doesn't write to anything.
@@ -895,7 +893,6 @@ test {
_ = Writer;
_ = @import("Io/bit_reader.zig");
_ = @import("Io/bit_writer.zig");
- _ = @import("Io/buffered_atomic_file.zig");
_ = @import("Io/buffered_reader.zig");
_ = @import("Io/buffered_writer.zig");
_ = @import("Io/counting_writer.zig");