Skip to content

Commit

Permalink
Fix Clippy style warning
Browse files Browse the repository at this point in the history
  • Loading branch information
cberner committed Mar 21, 2020
1 parent 642396b commit 88a9d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/matrix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl DenseBinaryMatrix {
fn select_all_right_of_mask(bit: usize) -> u64 {
let mask = DenseBinaryMatrix::select_mask(bit);
// Subtract one to convert e.g. 0100 -> 0011
(mask - 1)
mask - 1
}

fn clear_bit(word: &mut u64, bit: usize) {
Expand Down

0 comments on commit 88a9d6d

Please sign in to comment.