1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

clippy lint was renamed

This commit is contained in:
mat 2023-12-15 11:43:49 -06:00
parent a707e2eb82
commit dc26558415

View file

@ -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;
}