From da524418fdccd62052e4d86592eadba7b4da548c Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Mon, 3 Sep 2018 19:20:33 +0200 Subject: [PATCH] fix relative import --- library/stdarch/crates/core_arch/src/acle/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdarch/crates/core_arch/src/acle/mod.rs b/library/stdarch/crates/core_arch/src/acle/mod.rs index ec7dabd2b38c..3d1b0324d50a 100644 --- a/library/stdarch/crates/core_arch/src/acle/mod.rs +++ b/library/stdarch/crates/core_arch/src/acle/mod.rs @@ -83,7 +83,7 @@ mod dsp; ), all(target_feature = "mclass", target_feature = "dsp"), ))] -pub use dsp::*; +pub use self::dsp::*; // Deprecated in ACLE 2.0 for the A profile but fully supported on the M and R profiles, says // Section 5.4.9 of ACLE.