]> git.lizzy.rs Git - rust.git/commitdiff
Add issue numbers
authorSteven Fackler <sfackler@gmail.com>
Thu, 20 Aug 2015 00:01:19 +0000 (17:01 -0700)
committerSteven Fackler <sfackler@gmail.com>
Thu, 20 Aug 2015 00:01:19 +0000 (17:01 -0700)
src/libstd/sync/condvar.rs

index 981bcf5e0b5fb803c44d6d3a2fcebe62b373262b..851726d91c6e873d46dca4969ab882113a53808a 100644 (file)
 /// 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
     }