-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix clippy warning related to IString PartialOrd implementation #35
Fix clippy warning related to IString PartialOrd implementation #35
Conversation
Please provide description of why is this needed. I'm being more curious than strict, as to why it passed before and why it needs to be written out like this now. |
As can be seen in the CI failures for my other PRs, the version of clippy included in Rust 1.73.0 issues a new lint for
|
64224e9
to
bccfa7c
Compare
…tack#35) Clippy added a new lint `clippy::non_canonical_partial_ord_impl` (aka `incorrect_partial_ord_impl_on_ord_type`), hence it should now be followed.
No description provided.