mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
fix error set
This commit is contained in:
@@ -125,10 +125,7 @@ pub fn wait(child: *Child, io: Io) WaitError!Term {
|
||||
return io.vtable.childWait(io.userdata, child);
|
||||
}
|
||||
|
||||
pub const CollectOutputError = error{
|
||||
Timeout,
|
||||
StreamTooLong,
|
||||
} || Allocator.Error || Io.File.Reader.Error;
|
||||
pub const CollectOutputError = error{StreamTooLong} || Allocator.Error || Io.File.Reader.Error;
|
||||
|
||||
pub const CollectOutputOptions = struct {
|
||||
stdout: *std.ArrayList(u8),
|
||||
|
||||
Reference in New Issue
Block a user