| author | |
| committer | |
| log | 2028b4ce9127c3c6e439183f2f9313ec47eb7d62 |
| tree | c7349c0777e4b73f05d8b16c947d654b9f1db8df |
| parent | d788b0cd8b0b12ec4f3dddf4ecdb59556b73d4c2 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/io/serialization.zig+1-1| ... | ... | @@ -209,7 +209,7 @@ pub fn deserializer( |
| 209 | 209 | /// to the serializer struct. |
| 210 | 210 | pub fn Serializer(comptime endian: builtin.Endian, comptime packing: Packing, comptime OutStreamType: type) type { |
| 211 | 211 | return struct { |
| 212 | out_stream: if (packing == .Bit) BitOutStream(endian, OutStreamType) else OutStreamType, | |
| 212 | out_stream: if (packing == .Bit) io.BitOutStream(endian, OutStreamType) else OutStreamType, | |
| 213 | 213 | |
| 214 | 214 | const Self = @This(); |
| 215 | 215 | pub const Error = OutStreamType.Error; |