summary refs log tree commit diff
path: root/src/liballoc/lib.rs
diff options
context:
space:
mode:
authorAlexis Beingessner <a.beingessner@gmail.com>2015-07-09 21:57:21 -0700
committerAlexis Beingessner <a.beingessner@gmail.com>2015-07-17 08:29:15 -0700
commitbfa0e1f58acf1c28d500c34ed258f09ae021893e (patch)
tree2ce46adfc3ce6be3e7b9d12a14277b644e61cf5b /src/liballoc/lib.rs
parentb5dad7dcb22ed6bf8ebaae56b4339bd64f6983eb (diff)
downloadrust-bfa0e1f58acf1c28d500c34ed258f09ae021893e.tar.gz
rust-bfa0e1f58acf1c28d500c34ed258f09ae021893e.zip
Add RawVec to unify raw Vecish code
Diffstat (limited to 'src/liballoc/lib.rs')
-rw-r--r--src/liballoc/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index 905012bbb64..5c1fd2a1aa1 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -88,6 +88,7 @@
 #![feature(unique)]
 #![feature(unsafe_no_drop_flag, filling_drop)]
 #![feature(unsize)]
+#![feature(core_slice_ext)]
 
 #![cfg_attr(test, feature(test, alloc, rustc_private, box_raw))]
 #![cfg_attr(all(not(feature = "external_funcs"), not(feature = "external_crate")),
@@ -122,6 +123,7 @@ mod boxed { pub use std::boxed::{Box, HEAP}; }
 mod boxed_test;
 pub mod arc;
 pub mod rc;
+pub mod raw_vec;
 
 /// Common out-of-memory routine
 #[cold]