[functional-tests] Fix clippy warnings

This commit is contained in:
Joe Thornber
2020-08-07 15:41:21 +01:00
parent fa4ea3e2d9
commit 8f76371bb2
9 changed files with 46 additions and 58 deletions

View File

@@ -116,7 +116,7 @@ impl Unpack for Bitmap {
for _b in 0..32 {
let val = word & 0x3;
word = word >> 2;
word >>= 2;
if val < 3 {
entries.push(BitmapEntry::Small(val as u8));