Skip to content

Commit

Permalink
okay clippy you were right this time.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lokathor committed Jun 8, 2024
1 parent bccbfe0 commit 6c73212
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/u32x4_.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,8 @@ impl_shr_t_for_u32x4!(i8, u8, i16, u16, i32, u32, i64, u64, i128, u128);
/// the type. (same as wrapping_shr)
impl Shr<u32x4> for u32x4 {
type Output = Self;
#[inline]
#[must_use]
fn shr(self, rhs: u32x4) -> Self::Output {
pick! {
if #[cfg(target_feature="avx2")] {
Expand Down Expand Up @@ -365,6 +367,8 @@ impl Shr<u32x4> for u32x4 {
/// the type. (same as wrapping_shl)
impl Shl<u32x4> for u32x4 {
type Output = Self;
#[inline]
#[must_use]
fn shl(self, rhs: u32x4) -> Self::Output {
pick! {
if #[cfg(target_feature="avx2")] {
Expand Down

0 comments on commit 6c73212

Please sign in to comment.