about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2015-08-19 17:01:19 -0700
committerSteven Fackler <sfackler@gmail.com>2015-08-19 17:01:19 -0700
commit12216b7209431ae2a53d52c3a41c0d3536ab2210 (patch)
treea11ed24f266ddf4ecc520e011bb93be0d98a2d0e
parentb1c7a46c0db2cd73575792aebe08108b53289d80 (diff)
downloadrust-12216b7209431ae2a53d52c3a41c0d3536ab2210.tar.gz
rust-12216b7209431ae2a53d52c3a41c0d3536ab2210.zip
Add issue numbers
-rw-r--r--src/libstd/sync/condvar.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/sync/condvar.rs b/src/libstd/sync/condvar.rs
index 981bcf5e0b5..851726d91c6 100644
--- a/src/libstd/sync/condvar.rs
+++ b/src/libstd/sync/condvar.rs
@@ -21,11 +21,12 @@ use time::Duration;
 /// A type indicating whether a timed wait on a condition variable returned
 /// due to a time out or not.
 #[derive(Debug, PartialEq, Eq, Copy, Clone)]
-#[unstable(feature = "wait_timeout", reason = "newly added")]
+#[unstable(feature = "wait_timeout", reason = "newly added", issue = "27772")]
 pub struct WaitTimeoutResult(bool);
 
 impl WaitTimeoutResult {
     /// Returns whether the wait was known to have timed out.
+    #[unstable(feature = "wait_timeout", reason = "newly added", issue = "27772")]
     pub fn timed_out(&self) -> bool {
         self.0
     }