Skip to content

Commit f1a491b

Browse files
committed
Fix true count
Signed-off-by: Nicholas Gates <[email protected]>
1 parent dcf8b1e commit f1a491b

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

vortex-buffer/src/bit/view.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ impl<const NB: usize> BitView<'static, NB> {
4747

4848
/// Creates a [`BitView`] with all bits set to `false`.
4949
pub const fn all_false() -> Self {
50-
unsafe { BitView::new_unchecked(&Self::ALL_FALSE, NB * 8) }
50+
unsafe { BitView::new_unchecked(&Self::ALL_FALSE, 0) }
5151
}
5252
}
5353

vortex-compute/src/filter/slice.rs

Whitespace-only changes.

0 commit comments

Comments
 (0)