Skip to content

Commit 3a0909c

Browse files
Fix incorrect reference to EMPTY_BIT_MASK
1 parent 3439347 commit 3a0909c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core_simd/src/masks/bitmask.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ where
130130

131131
#[inline]
132132
pub(crate) fn from_bitmask_integer(bitmask: u64) -> Self {
133-
let mut bytes = <LaneCount<N> as SupportedLaneCount>::BitMask::EMPTY_BIT_MASK;
133+
let mut bytes = <LaneCount<N> as SupportedLaneCount>::EMPTY_BIT_MASK;
134134
let len = bytes.as_mut().len();
135135
bytes
136136
.as_mut()

0 commit comments

Comments
 (0)