From dc26558415f697433d2ada8e32c11dfa28ed5827 Mon Sep 17 00:00:00 2001 From: mat Date: Fri, 15 Dec 2023 11:43:49 -0600 Subject: [PATCH] clippy lint was renamed --- azalea-brigadier/src/tree/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azalea-brigadier/src/tree/mod.rs b/azalea-brigadier/src/tree/mod.rs index a2b1f38a..a6c93679 100755 --- a/azalea-brigadier/src/tree/mod.rs +++ b/azalea-brigadier/src/tree/mod.rs @@ -294,7 +294,7 @@ impl PartialEq for CommandNode { if let Some(selfexecutes) = &self.command { // idk how to do this better since we can't compare `dyn Fn`s if let Some(otherexecutes) = &other.command { - #[allow(clippy::vtable_address_comparisons)] + #[allow(clippy::ambiguous_wide_pointer_comparisons)] if !Arc::ptr_eq(selfexecutes, otherexecutes) { return false; }