about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-05-14 14:24:41 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-05-15 13:50:34 -0700
commit8211539114df8b6e3a9b8b251fa57cb5a77d2f14 (patch)
tree92a98a66aebf8388e199ccb059c83d6afefaa1e1 /src/libstd/lib.rs
parent912a9675c0b7f9e8c836983e525b180c48693925 (diff)
downloadrust-8211539114df8b6e3a9b8b251fa57cb5a77d2f14.tar.gz
rust-8211539114df8b6e3a9b8b251fa57cb5a77d2f14.zip
Register new snapshots
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index a37f9a516fd..87c4ef1046f 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -133,16 +133,13 @@ extern crate core;
 #[cfg(test)] pub use ops = realstd::ops;
 #[cfg(test)] pub use cmp = realstd::cmp;
 #[cfg(test)] pub use ty = realstd::ty;
-#[cfg(not(stage0), test)] pub use owned = realstd::owned;
+#[cfg(test)] pub use owned = realstd::owned;
 
 #[cfg(not(test))] pub use cmp = core::cmp;
 #[cfg(not(test))] pub use kinds = core::kinds;
 #[cfg(not(test))] pub use ops = core::ops;
 #[cfg(not(test))] pub use ty = core::ty;
 
-#[cfg(stage0, test)] pub use owned = realstd::owned;
-#[cfg(stage0, not(test))] pub use owned = core::owned;
-
 pub use core::any;
 pub use core::bool;
 pub use core::cell;
@@ -209,7 +206,7 @@ pub mod ascii;
 
 pub mod rc;
 pub mod gc;
-#[cfg(not(stage0), not(test))]
+#[cfg(not(test))]
 pub mod owned;
 
 /* Common traits */