Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhewitt committed Sep 10, 2024
1 parent e4a1041 commit e054b28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/jiter/src/lazy_index_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ mod index_map_vec {

pub fn duplicates_mask(&self) -> BitArr!(for HASHMAP_THRESHOLD, in u16) {
let data = self.data();
if self.duplicates_mask == DuplicatesMask::ZERO {
if self.duplicates_mask == { DuplicatesMask::ZERO } {
let new_mask = build_duplicates_mask(data);
self.duplicates_mask.data[0].store(new_mask.data[0], Ordering::Relaxed);
new_mask
Expand Down

0 comments on commit e054b28

Please sign in to comment.