aboutsummaryrefslogtreecommitdiff
path: root/std/io.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-04-25 00:24:25 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-04-25 00:24:25 -0400
commit17ffe166c286de5ff0ef4d67f60267abba5f6e12 (patch)
treeb76b7924fb16a2313721b7a294b04f75db621bcb /std/io.zig
parente1bf74fca3de7943b8f7c15be4da3dbc8e3da17e (diff)
downloadzig-17ffe166c286de5ff0ef4d67f60267abba5f6e12.tar.gz
zig-17ffe166c286de5ff0ef4d67f60267abba5f6e12.zip
add preliminary windows support to std.io.COutStream
Diffstat (limited to 'std/io.zig')
-rw-r--r--std/io.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/std/io.zig b/std/io.zig
index 5ad35c91fb..48cec478e4 100644
--- a/std/io.zig
+++ b/std/io.zig
@@ -1092,6 +1092,7 @@ test "io.readLineSliceFrom" {
pub const Packing = enum {
/// Pack data to byte alignment
Byte,
+
/// Pack data to bit alignment
Bit,
};
@@ -1454,6 +1455,6 @@ pub fn Serializer(comptime endian: builtin.Endian, comptime packing: Packing, co
test "import io tests" {
comptime {
- _ = @import("io_test.zig");
+ _ = @import("io/test.zig");
}
}