diff --git a/mp4parse/src/lib.rs b/mp4parse/src/lib.rs index 64aada79..c57beb91 100644 --- a/mp4parse/src/lib.rs +++ b/mp4parse/src/lib.rs @@ -51,8 +51,6 @@ const MIF1_BRAND: FourCC = FourCC { value: *b"mif1" }; /// A trait to indicate a type can be infallibly converted to `u64`. /// This should only be implemented for infallible conversions, so only unsigned types are valid. trait ToU64 { - // Remove when https://github.com/rust-lang/rust-clippy/issues/6727 is resolved - #[allow(clippy::wrong_self_convention)] fn to_u64(self) -> u64; }