Remove must_use from condition::Waiter (#430)

This commit is contained in:
Nikolay Kim 2024-09-26 16:47:39 +05:00 committed by GitHub
parent acb18e500c
commit 0d6f348fc2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View file

@ -130,7 +130,7 @@ impl<T: Default> Drop for Condition<T> {
}
}
#[must_use = "Waiter do nothing unless polled"]
/// Waits for result from condition
pub struct Waiter<T = ()> {
token: usize,
inner: Cell<Inner<T>>,