cargo clippy --fix

This commit is contained in:
Henry Schimke
2023-05-04 13:45:57 -05:00
parent e8501c1b6e
commit 634722a806
16 changed files with 50 additions and 50 deletions

View File

@@ -185,7 +185,7 @@ fn testApplyMaskPenaltyRule4() {
assert_eq!(30, mask_util::applyMaskPenaltyRule4(&matrix));
}
fn testGetDataMaskBitInternal(maskPattern: u32, expected: &Vec<Vec<u32>>) -> bool {
fn testGetDataMaskBitInternal(maskPattern: u32, expected: &[Vec<u32>]) -> bool {
for x in 0..6 {
// for (int x = 0; x < 6; ++x) {
for y in 0..6 {