remove unnecessary let binding
This commit is contained in:
parent
ff9ba664e1
commit
c064146098
1 changed files with 1 additions and 8 deletions
|
|
@ -66,14 +66,7 @@ macro_rules! types {
|
|||
#[allow(unused)]
|
||||
macro_rules! simd_shuffle {
|
||||
($x:expr, $y:expr, $idx:expr $(,)?) => {{
|
||||
simd_shuffle(
|
||||
$x,
|
||||
$y,
|
||||
const {
|
||||
let v: [u32; _] = $idx;
|
||||
v
|
||||
},
|
||||
)
|
||||
simd_shuffle::<_, [u32; _], _>($x, $y, const { $idx })
|
||||
}};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue