From 06096f575276c528270bbc9044d6bb8a269ce23b Mon Sep 17 00:00:00 2001 From: baumanj Date: Wed, 27 Oct 2021 09:57:51 -0700 Subject: [PATCH] Remove obsolete clippy::wrong_self_convention, again Missed a spot with https://github.com/mozilla/mp4parse-rust/pull/337 --- mp4parse/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) 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; }