about summary refs log tree commit diff
path: root/src/libcore/lib.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-04-07 19:38:35 +0200
committerSimon Sapin <simon.sapin@exyr.org>2018-04-21 09:45:18 +0200
commit90f29fbdb105b65e8ddb2b5c8b834b8db32ef9ef (patch)
tree8ff3cc541de803e5f82194332ff1c48abe8bf210 /src/libcore/lib.rs
parentde8ed6a1d6ae3b2f2c7f1035ef3b71abda7a6a84 (diff)
downloadrust-90f29fbdb105b65e8ddb2b5c8b834b8db32ef9ef.tar.gz
rust-90f29fbdb105b65e8ddb2b5c8b834b8db32ef9ef.zip
Replace SliceExt with inherent [T] methods in libcore
Diffstat (limited to 'src/libcore/lib.rs')
-rw-r--r--src/libcore/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index 88bd0444233..f4fafe304c0 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -229,7 +229,7 @@ macro_rules! test_v512 { ($item:item) => {}; }
 #[allow(unused_macros)]
 macro_rules! vector_impl { ($([$f:ident, $($args:tt)*]),*) => { $($f!($($args)*);)* } }
 #[path = "../stdsimd/coresimd/mod.rs"]
-#[allow(missing_docs, missing_debug_implementations, dead_code)]
+#[allow(missing_docs, missing_debug_implementations, dead_code, unused_imports)]
 #[unstable(feature = "stdsimd", issue = "48556")]
 #[cfg(not(stage0))] // allow changes to how stdsimd works in stage0
 mod coresimd;