Skip to content

Commit bbd388f

Browse files
committed
remove extra debug assert
Signed-off-by: Connor Tsui <[email protected]>
1 parent cd14dd6 commit bbd388f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

encodings/fastlanes/src/bitpacking/array/bitpack_decompress.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ pub fn unpack_to_pvector<P: BitPacked>(array: &BitPackedArray) -> PVectorMut<P>
3636
let len = array.len();
3737
let mut elements = BufferMut::<P>::with_capacity(len);
3838
let uninit_slice = &mut elements.spare_capacity_mut()[..len];
39-
debug_assert_eq!(uninit_slice.len(), len);
4039

4140
// Decode into an uninitialized slice.
4241
let mut bit_packed_iter = array.unpacked_chunks();

0 commit comments

Comments
 (0)