about summary refs log tree commit diff
path: root/src/libcore/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-02-17 19:49:22 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-02-17 22:04:31 -0800
commit47f91a9484eceef10536d4caac6ef578cd254567 (patch)
treef966ba8492d954fbff298bc8f9f6be9cda3a2449 /src/libcore/lib.rs
parent665ea963d3c29ef7670662707f2f2307f000efa3 (diff)
downloadrust-47f91a9484eceef10536d4caac6ef578cd254567.tar.gz
rust-47f91a9484eceef10536d4caac6ef578cd254567.zip
Register new snapshots
Diffstat (limited to 'src/libcore/lib.rs')
-rw-r--r--src/libcore/lib.rs21
1 files changed, 6 insertions, 15 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index f1808bc1fb5..f0c60ffe4bf 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -154,25 +154,16 @@ mod array;
 mod core {
     pub use panicking;
     pub use fmt;
-    #[cfg(not(stage0))] pub use clone;
-    #[cfg(not(stage0))] pub use cmp;
-    #[cfg(not(stage0))] pub use hash;
-    #[cfg(not(stage0))] pub use marker;
-    #[cfg(not(stage0))] pub use option;
-    #[cfg(not(stage0))] pub use iter;
+    pub use clone;
+    pub use cmp;
+    pub use hash;
+    pub use marker;
+    pub use option;
+    pub use iter;
 }
 
 #[doc(hidden)]
 mod std {
-    // NOTE: remove after next snapshot
-    #[cfg(stage0)] pub use clone;
-    #[cfg(stage0)] pub use cmp;
-    #[cfg(stage0)] pub use hash;
-    #[cfg(stage0)] pub use marker;
-    #[cfg(stage0)] pub use option;
-    #[cfg(stage0)] pub use fmt;
-    #[cfg(stage0)] pub use iter;
-
     // range syntax
     pub use ops;
 }