Skip to content

Commit

Permalink
Do a clippy pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Jan 19, 2021
1 parent 374a915 commit 7be13bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bitmap/cmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ impl<'a> Iterator for Pairs<'a> {
Right,
Both,
None,
};
}
let which = match (self.0.peek(), self.1.peek()) {
(None, None) => Which::None,
(Some(_), None) => Which::Left,
Expand Down
2 changes: 1 addition & 1 deletion src/treemap/cmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ impl<'a> Iterator for Pairs<'a> {
Right,
Both,
None,
};
}
let which = match (self.0.peek(), self.1.peek()) {
(None, None) => Which::None,
(Some(_), None) => Which::Left,
Expand Down

0 comments on commit 7be13bd

Please sign in to comment.