diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2018-08-19 17:45:31 +0200 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2018-09-22 21:01:21 +0200 |
| commit | 851acdd22dd2e99759e7f2f3e613ee9566ea0dcc (patch) | |
| tree | 96508bcb735cdff5176cbd8c046670b9a42552e7 /src/libcore/lib.rs | |
| parent | 7bb5b3eb3228df648a08b02c85eddcd9b9cc85bd (diff) | |
| download | rust-851acdd22dd2e99759e7f2f3e613ee9566ea0dcc.tar.gz rust-851acdd22dd2e99759e7f2f3e613ee9566ea0dcc.zip | |
core: fix deprecated warnings
Diffstat (limited to 'src/libcore/lib.rs')
| -rw-r--r-- | src/libcore/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs index 675e73e952c..3b7646fa268 100644 --- a/src/libcore/lib.rs +++ b/src/libcore/lib.rs @@ -246,6 +246,8 @@ macro_rules! test_v512 { ($item:item) => {}; } #[allow(unused_macros)] macro_rules! vector_impl { ($([$f:ident, $($args:tt)*]),*) => { $($f!($($args)*);)* } } #[path = "../stdsimd/coresimd/mod.rs"] +// replacing uses of mem::{uninitialized,zeroed} with MaybeUninit needs to be in the stdsimd repo +#[allow(deprecated)] #[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 |
