From 12216b7209431ae2a53d52c3a41c0d3536ab2210 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 19 Aug 2015 17:01:19 -0700 Subject: [PATCH] Add issue numbers --- src/libstd/sync/condvar.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libstd/sync/condvar.rs b/src/libstd/sync/condvar.rs index 981bcf5e0b5f..851726d91c6e 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 }