From c55e19cb00f65580a81a59a6f8d31ee29c59ea7e Mon Sep 17 00:00:00 2001 From: Caleb Zulawski Date: Tue, 2 May 2023 22:33:01 -0400 Subject: [PATCH] Add Simd, Mask, simd_swizzle to prelude Co-authored-by: Jacob Lifshay --- crates/core_simd/src/simd/prelude.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/core_simd/src/simd/prelude.rs b/crates/core_simd/src/simd/prelude.rs index bdaed3ba0676..e8fdc932d490 100644 --- a/crates/core_simd/src/simd/prelude.rs +++ b/crates/core_simd/src/simd/prelude.rs @@ -7,7 +7,8 @@ #[doc(no_inline)] pub use super::{ - SimdConstPtr, SimdFloat, SimdInt, SimdMutPtr, SimdOrd, SimdPartialEq, SimdPartialOrd, SimdUint, + simd_swizzle, Mask, Simd, SimdConstPtr, SimdFloat, SimdInt, SimdMutPtr, SimdOrd, SimdPartialEq, + SimdPartialOrd, SimdUint, }; #[rustfmt::skip]