diff --git a/lib/simd/powi.rs b/lib/simd/powi.rs index 3c652aac..1e8e7da3 100644 --- a/lib/simd/powi.rs +++ b/lib/simd/powi.rs @@ -1,5 +1,5 @@ use std::ops::MulAssign; -use std::simd::{LaneCount, SimdElement, SupportedLaneCount, prelude::*}; +use std::simd::{SimdElement, prelude::*}; /// Trait for [`Simd<_, _>` ] types that implement `powi`. pub trait Powi { @@ -10,7 +10,6 @@ pub trait Powi { impl Powi for Simd where T: SimdElement + From, - LaneCount: SupportedLaneCount, Self: MulAssign, { #[inline(always)]