Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d955e73f authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "binder: fix PartialEq impl of SpIBinder" into main

parents a5744474 d08373d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -195,7 +195,7 @@ impl PartialOrd for SpIBinder {

impl PartialEq for SpIBinder {
    fn eq(&self, other: &Self) -> bool {
        ptr::eq(self.0.as_ptr(), other.0.as_ptr())
        self.cmp(other) == Ordering::Equal
    }
}