Fix unnecessary unused lints.

This commit is contained in:
Sebastian Schmidt 2022-07-04 14:51:27 +03:00
parent 5f1aa344ab
commit 563d82a525

View File

@ -26,7 +26,8 @@ impl<'a> Iterator for NodeIter<'a> {
result = Some(next); result = Some(next);
} else { } else {
// Can not fail because we just borrowed last. // Can not fail because we just borrowed last.
self.stack.pop().unwrap(); // We just checked that the iterator is empty, so we can safely discard it.
let _ = self.stack.pop().unwrap();
} }
} else { } else {
return None; return None;