srctree

Igor Anić parent c680b5d1 a06a305f
zlib: fix missing comptime attribute

inlinesplit
lib/std/compress/flate/bit_reader.zig added: 2, removed: 2, total 0
@@ -23,7 +23,7 @@ pub fn BitReader32(comptime ReaderType: type) type {
/// fill buffer from forward_reader by calling fill in advance and readF with
/// buffered flag set.
///
pub fn BitReader(T: type, comptime ReaderType: type) type {
pub fn BitReader(comptime T: type, comptime ReaderType: type) type {
assert(T == u32 or T == u64);
const t_bytes: usize = @sizeOf(T);
const Tshift = if (T == u64) u6 else u5;