Skip to content

Commit 883ea92

Browse files
committed
Ignore clippy::manual_is_multiple_of for now.
1 parent 8c06eda commit 883ea92

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

mp4parse/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4485,6 +4485,7 @@ fn read_ftyp<T: Read>(src: &mut BMFFBox<T>) -> Result<FileTypeBox> {
44854485
let major = be_u32(src)?;
44864486
let minor = be_u32(src)?;
44874487
let bytes_left = src.bytes_left();
4488+
#[allow(clippy::manual_is_multiple_of)] // Allow until Gecko's MSRV is 1.87.
44884489
if bytes_left % 4 != 0 {
44894490
return Status::FtypBadSize.into();
44904491
}

0 commit comments

Comments
 (0)