about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKaDiWa <kalle.wachsmuth@gmail.com>2022-08-09 02:14:43 +0200
committerkadiwa <kalle.wachsmuth@gmail.com>2023-04-12 19:27:18 +0200
commit280657066a144645a4d42a5be84b25329f456a38 (patch)
tree412de6ef260b30196ea9e740bdeb80854b51025f
parentddcb68a94fe1e3da6247f2cb8f944a0494a80552 (diff)
downloadrust-280657066a144645a4d42a5be84b25329f456a38.tar.gz
rust-280657066a144645a4d42a5be84b25329f456a38.zip
remove some unneeded imports
-rw-r--r--crates/core_simd/src/masks/full_masks.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core_simd/src/masks/full_masks.rs b/crates/core_simd/src/masks/full_masks.rs
index adf0fcbeae2..b5ba198e504 100644
--- a/crates/core_simd/src/masks/full_masks.rs
+++ b/crates/core_simd/src/masks/full_masks.rs
@@ -257,7 +257,7 @@ where
     }
 }
 
-impl<T, const LANES: usize> core::convert::From<Mask<T, LANES>> for Simd<T, LANES>
+impl<T, const LANES: usize> From<Mask<T, LANES>> for Simd<T, LANES>
 where
     T: MaskElement,
     LaneCount<LANES>: SupportedLaneCount,