Skip to content

Commit 44d02d7

Browse files
committed
inline(always) -> inline
1 parent 77ec98a commit 44d02d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/general/huffman_encoding.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ impl HuffmanEncoding {
187187
self.num_bits += data.bits as u64;
188188
}
189189

190-
#[inline(always)]
190+
#[inline]
191191
fn get_bit(&self, pos: u64) -> bool {
192192
(self.data[(pos >> 6) as usize] & (1 << (pos & 63))) != 0
193193
}

0 commit comments

Comments
 (0)