Skip to content

Commit 3b3caba

Browse files
committed
Add missing use statements for types
1 parent df00775 commit 3b3caba

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

crates/core_arch/src/arm/neon.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
#[allow(unused_imports)]
12
use crate::core_arch::acle::neon::*;
3+
#[allow(unused_imports)]
24
use crate::core_arch::simd_llvm::*;
35
#[allow(unused_imports)]
6+
use crate::core_arch::simd::{i32x4, u32x4, f32x4};
7+
#[allow(unused_imports)]
48
use crate::mem::transmute;
59

610
#[cfg(test)]

0 commit comments

Comments
 (0)