Skip to content

Commit 12216b7

Browse files
committed
Add issue numbers
1 parent b1c7a46 commit 12216b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libstd/sync/condvar.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@ use time::Duration;
2121
/// A type indicating whether a timed wait on a condition variable returned
2222
/// due to a time out or not.
2323
#[derive(Debug, PartialEq, Eq, Copy, Clone)]
24-
#[unstable(feature = "wait_timeout", reason = "newly added")]
24+
#[unstable(feature = "wait_timeout", reason = "newly added", issue = "27772")]
2525
pub struct WaitTimeoutResult(bool);
2626

2727
impl WaitTimeoutResult {
2828
/// Returns whether the wait was known to have timed out.
29+
#[unstable(feature = "wait_timeout", reason = "newly added", issue = "27772")]
2930
pub fn timed_out(&self) -> bool {
3031
self.0
3132
}

0 commit comments

Comments
 (0)