Skip to content

Commit ee56743

Browse files
committed
refactor - remove Sized as it is implicit
1 parent 5eeea56 commit ee56743

File tree

1 file changed

+2
-2
lines changed
  • crates/core_arch/src/arm_shared/neon

1 file changed

+2
-2
lines changed

crates/core_arch/src/arm_shared/neon/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ use crate::{core_arch::simd::*, hint::unreachable_unchecked, intrinsics::simd::*
1212
use stdarch_test::assert_instr;
1313

1414
pub(crate) trait AsUnsigned {
15-
type Unsigned: Sized;
15+
type Unsigned;
1616
fn as_unsigned(self) -> Self::Unsigned;
1717
}
1818

1919
pub(crate) trait AsSigned {
20-
type Signed: Sized;
20+
type Signed;
2121
fn as_signed(self) -> Self::Signed;
2222
}
2323

0 commit comments

Comments
 (0)