Skip to content

Commit

Permalink
refactor - remove Sized as it is implicit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamesbarford authored and Amanieu committed Jan 16, 2025
1 parent 0e8cd6f commit b1f0789
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/core_arch/src/arm_shared/neon/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ use crate::{core_arch::simd::*, hint::unreachable_unchecked, intrinsics::simd::*
use stdarch_test::assert_instr;

pub(crate) trait AsUnsigned {
type Unsigned: Sized;
type Unsigned;
fn as_unsigned(self) -> Self::Unsigned;
}

pub(crate) trait AsSigned {
type Signed: Sized;
type Signed;
fn as_signed(self) -> Self::Signed;
}

Expand Down

0 comments on commit b1f0789

Please sign in to comment.