aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-12-15 11:43:49 -0600
committermat <git@matdoes.dev>2023-12-15 11:43:49 -0600
commitdc26558415f697433d2ada8e32c11dfa28ed5827 (patch)
tree42a4d3ba42ce4445a6a85a9e6ae8bf3434e00156
parenta707e2eb82b74994a16083b31fa4576332cf1995 (diff)
downloadazalea-drasl-dc26558415f697433d2ada8e32c11dfa28ed5827.tar.xz
clippy lint was renamed
-rwxr-xr-xazalea-brigadier/src/tree/mod.rs2
1 files changed, 1 insertions, 1 deletions
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<S> PartialEq for CommandNode<S> {
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;
}