Skip to content

Commit 85cb6bd

Browse files
saik0Kerollmops
andauthored
Update src/bitmap/sorted_u16_vec.rs
Co-authored-by: Clément Renault <[email protected]>
1 parent 39fe17a commit 85cb6bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bitmap/sorted_u16_vec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ impl TryFrom<Vec<u16>> for SortedU16Vec {
209209
match cur.cmp(prev) {
210210
Ordering::Less => return Err(Error { index: i, kind: ErrorKind::OutOfOrder }),
211211
Ordering::Equal => return Err(Error { index: i, kind: ErrorKind::Duplicate }),
212-
Ordering::Greater => {}
212+
Ordering::Greater => (),
213213
}
214214
prev = cur;
215215
}

0 commit comments

Comments
 (0)