| ... | @@ -209,7 +209,7 @@ pub fn deserializer( | ... | @@ -209,7 +209,7 @@ pub fn deserializer( |
| 209 | /// to the serializer struct. | 209 | /// to the serializer struct. |
| 210 | pub fn Serializer(comptime endian: builtin.Endian, comptime packing: Packing, comptime OutStreamType: type) type { | 210 | pub fn Serializer(comptime endian: builtin.Endian, comptime packing: Packing, comptime OutStreamType: type) type { |
| 211 | return struct { | 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 | const Self = @This(); | 214 | const Self = @This(); |
| 215 | pub const Error = OutStreamType.Error; | 215 | pub const Error = OutStreamType.Error; |