From 0b8a24e2c9070b1a4a889cc7ff14961c7bdd272f Mon Sep 17 00:00:00 2001 From: relrelb Date: Wed, 17 Aug 2022 00:34:44 +0300 Subject: [PATCH] swf: Remove `#[allow(clippy::derive_partial_eq_without_eq)` https://github.com/rust-lang/rust-clippy/issues/8867 is fixed, and a false positive is no longer reported. --- swf/src/avm2/types.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/swf/src/avm2/types.rs b/swf/src/avm2/types.rs index ce7a04418a47..86ed3c0f69e5 100644 --- a/swf/src/avm2/types.rs +++ b/swf/src/avm2/types.rs @@ -25,8 +25,6 @@ pub struct ConstantPool { pub multinames: Vec, } -// clippy false positive: https://github.com/rust-lang/rust-clippy/issues/8867 -#[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, Debug, Eq, PartialEq)] pub struct Index(pub u32, pub PhantomData);