diff options
| author | Eric Joldasov <bratishkaerik@getgoogleoff.me> | 2023-06-04 23:51:17 +0600 |
|---|---|---|
| committer | Eric Joldasov <bratishkaerik@getgoogleoff.me> | 2023-06-13 23:45:12 +0600 |
| commit | b0ad1c86daa3545cdb1a06f8e256adec577956c3 (patch) | |
| tree | 998b107761321dc0edf056283eaecf26b8c3a6f5 /lib | |
| parent | e92dab14f929d8c1d1a9ad4a25a7fae7dd04b0f1 (diff) | |
| download | zig-b0ad1c86daa3545cdb1a06f8e256adec577956c3.tar.gz zig-b0ad1c86daa3545cdb1a06f8e256adec577956c3.zip | |
std.io: remove `FindByteOutStream` and `findByteOutStream` (deprecated in
0.9)
Followup to 902df103c6151c257c90de9ba5f29f7f4b9dbea2.
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/std/io.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/std/io.zig b/lib/std/io.zig index f6d893c7dd..fb8b0b9d14 100644 --- a/lib/std/io.zig +++ b/lib/std/io.zig @@ -148,9 +148,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 FindByteOutStream = @compileError("deprecated; use `FindByteWriter`"); -pub const findByteOutStream = @compileError("deprecated; use `findByteWriter`"); - pub const BufferedAtomicFile = @import("io/buffered_atomic_file.zig").BufferedAtomicFile; pub const StreamSource = @import("io/stream_source.zig").StreamSource; |
