diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2015-07-13 11:57:46 -0700 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2015-08-17 14:41:37 -0700 |
| commit | c66554cab3518a9f5c36eafd622ca4c8a3fda631 (patch) | |
| tree | 958355c0154f8a11219180463ef3aeb8a42aff3f /src/libstd/lib.rs | |
| parent | c8b6d5b23cc8b2d43ece9f06252c7e98280fb8e5 (diff) | |
| download | rust-c66554cab3518a9f5c36eafd622ca4c8a3fda631.tar.gz rust-c66554cab3518a9f5c36eafd622ca4c8a3fda631.zip | |
switch core::simd to repr(simd) and deprecate it.
This functionality will be available out of tree in the `simd` crate on crates.io. [breaking-change]
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 655fa04c264..bc7252fa33a 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -294,6 +294,7 @@ pub use core::mem; pub use core::ops; pub use core::ptr; pub use core::raw; +#[allow(deprecated)] pub use core::simd; pub use core::result; pub use core::option; |
