Skip to content

Commit

Permalink
Merge pull request rust-lang#397 from taiki-e/imports
Browse files Browse the repository at this point in the history
Remove redundant imports
  • Loading branch information
calebzulawski committed Feb 22, 2024
2 parents 6491107 + bb4bba5 commit 8c786f3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion crates/core_simd/src/vector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use crate::simd::{
ptr::{SimdConstPtr, SimdMutPtr},
LaneCount, Mask, MaskElement, SupportedLaneCount, Swizzle,
};
use core::convert::{TryFrom, TryInto};

/// A SIMD vector with the shape of `[T; N]` but the operations of `T`.
///
Expand Down
2 changes: 1 addition & 1 deletion crates/core_simd/tests/swizzle_dyn.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![feature(portable_simd)]
use core::{fmt, ops::RangeInclusive};
use test_helpers::{self, biteq, make_runner, prop_assert_biteq};
use test_helpers::{biteq, make_runner, prop_assert_biteq};

fn swizzle_dyn_scalar_ver<const N: usize>(values: [u8; N], idxs: [u8; N]) -> [u8; N] {
let mut array = [0; N];
Expand Down

0 comments on commit 8c786f3

Please sign in to comment.