This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve incorrect_partial_ord_impl_on_ord_type clippy lint
warning: incorrect implementation of `partial_cmp` on an `Ord` type --> src/value/tagged.rs:150:1 | 150 | / impl PartialOrd for Tag { 151 | | fn partial_cmp(&self, other: &Self) -> Option<Ordering> { | | _____________________________________________________________- 152 | || Some(Ord::cmp(self, other)) 153 | || } | ||_____- help: change this to: `{ Some(self.cmp(other)) }` 154 | | } | |__^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incorrect_partial_ord_impl_on_ord_type = note: `-W clippy::incorrect-partial-ord-impl-on-ord-type` implied by `-W clippy::all`
- Loading branch information