about summary refs log tree commit diff
path: root/src/liballoc/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-08-11 22:11:46 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-08-11 22:42:22 -0700
commit837ae4f3d417151c3d2b38672bf92174d8d9266b (patch)
tree042a42462a85d298668f0974ab97e2a652414434 /src/liballoc/lib.rs
parentbbef8893f798452874f15374992804c8184c32c5 (diff)
parent938099a7ebccbad2a2cad58d71df316d5ccd512c (diff)
downloadrust-837ae4f3d417151c3d2b38672bf92174d8d9266b.tar.gz
rust-837ae4f3d417151c3d2b38672bf92174d8d9266b.zip
rollup merge of #27678: alexcrichton/snapshots
* Lots of core prelude imports removed
* Makefile support for MSVC env vars and Rust crates removed
* Makefile support for morestack removed
Diffstat (limited to 'src/liballoc/lib.rs')
-rw-r--r--src/liballoc/lib.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index ea58ea0ba6f..6551011e81d 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -92,7 +92,6 @@
 #![feature(unsize)]
 #![feature(core_slice_ext)]
 #![feature(core_str_ext)]
-#![cfg_attr(stage0, feature(core, core_prelude))]
 
 #![cfg_attr(test, feature(test, alloc, rustc_private, box_raw))]
 #![cfg_attr(all(not(feature = "external_funcs"), not(feature = "external_crate")),
@@ -101,8 +100,6 @@
 #[cfg(all(not(feature = "external_funcs"), not(feature = "external_crate")))]
 extern crate libc;
 
-#[cfg(stage0)] #[macro_use] extern crate core;
-
 // Allow testing this library
 
 #[cfg(test)] #[macro_use] extern crate std;