Fix incorrect reference to EMPTY_BIT_MASK

This commit is contained in:
burgerindividual 2025-08-04 11:29:22 -04:00
parent 3439347533
commit 3a0909c767

View file

@ -130,7 +130,7 @@ where
#[inline]
pub(crate) fn from_bitmask_integer(bitmask: u64) -> Self {
let mut bytes = <LaneCount<N> as SupportedLaneCount>::BitMask::EMPTY_BIT_MASK;
let mut bytes = <LaneCount<N> as SupportedLaneCount>::EMPTY_BIT_MASK;
let len = bytes.as_mut().len();
bytes
.as_mut()