Skip to content

Commit 61daba9

Browse files
committed
Import the 2021 prelude in the core crate
1 parent 8d2208e commit 61daba9

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

crates/core_simd/src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,6 @@
4545
#![unstable(feature = "portable_simd", issue = "86656")]
4646
//! Portable SIMD module.
4747
48-
#[prelude_import]
49-
#[allow(unused_imports)]
50-
use core::prelude::v1::*;
51-
5248
#[path = "mod.rs"]
5349
mod core_simd;
5450
pub use self::core_simd::simd;

crates/core_simd/src/vector.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use crate::simd::{
44
ptr::{SimdConstPtr, SimdMutPtr},
55
LaneCount, Mask, MaskElement, SupportedLaneCount, Swizzle,
66
};
7-
use core::convert::{TryFrom, TryInto};
87

98
/// A SIMD vector with the shape of `[T; N]` but the operations of `T`.
109
///

0 commit comments

Comments
 (0)