std: Move simd to core::simd and reexport. #1457

[breaking-change]
This commit is contained in:
Brian Anderson
2014-05-20 20:24:17 -07:00
parent 1240197a5b
commit 1a1e6c8e73
10 changed files with 17 additions and 15 deletions

View File

@@ -53,7 +53,7 @@
html_root_url = "http://doc.rust-lang.org/")]
#![no_std]
#![feature(globs, macro_rules, managed_boxes, phase)]
#![feature(globs, macro_rules, managed_boxes, phase, simd)]
#![deny(missing_doc)]
#[cfg(test)] extern crate realcore = "core";
@@ -124,6 +124,7 @@ pub mod iter;
pub mod option;
pub mod raw;
pub mod result;
pub mod simd;
pub mod slice;
pub mod str;
pub mod tuple;