about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorAaron Turon <aturon@mozilla.com>2016-02-19 16:08:36 -0800
committerAaron Turon <aturon@mozilla.com>2016-02-23 07:31:16 -0800
commita92ee0f664c84545c3cba70644472ec3df23c1ee (patch)
tree5a769fa94ccb4e5a1f9c0f783d6ed6c531106eb8 /src/libstd/sync
parent28a3e8bb51cdeda4ee73296b827bfb208a0bff5b (diff)
downloadrust-a92ee0f664c84545c3cba70644472ec3df23c1ee.tar.gz
rust-a92ee0f664c84545c3cba70644472ec3df23c1ee.zip
Register new snapshots
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/mpsc/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs
index 9487295fd1a..fadca390986 100644
--- a/src/libstd/sync/mpsc/mod.rs
+++ b/src/libstd/sync/mpsc/mod.rs
@@ -385,12 +385,12 @@ pub enum TrySendError<T> {
     /// this is not a buffered channel, then there is no receiver available to
     /// acquire the data.
     #[stable(feature = "rust1", since = "1.0.0")]
-    Full(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] T),
+    Full(#[stable(feature = "rust1", since = "1.0.0")] T),
 
     /// This channel's receiving half has disconnected, so the data could not be
     /// sent. The data is returned back to the callee in this case.
     #[stable(feature = "rust1", since = "1.0.0")]
-    Disconnected(#[cfg_attr(not(stage0), stable(feature = "rust1", since = "1.0.0"))] T),
+    Disconnected(#[stable(feature = "rust1", since = "1.0.0")] T),
 }
 
 enum Flavor<T> {