Skip to content

Commit 84c9050

Browse files
committed
Allow needless continue for fair_queue's explicitness
1 parent 52b2c4b commit 84c9050

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/fair_queue.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ where
9090
{
9191
type Item = (K, T);
9292

93+
#[allow(clippy::needless_continue)]
9394
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
9495
let fair_queue = self.get_mut();
9596
loop {

0 commit comments

Comments
 (0)