Skip to content

Commit f560820

Browse files
Merge pull request #471 from burgerindividual/fix-avx512
Fix compilation for AVX512
2 parents 3439347 + 3a0909c commit f560820

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)