You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running `cargo +nightly clippy --all-features` finds a couple things in
the compiler. Fix these. One is a subtle change to our `OrdF64` type:
this is a wrapper type to add `Ord` to f64, panicking in the case that
we hit NaN.
Previously our `Ord` impl would panic but our `PartialOrd` impl would
not. Now they both do.
0 commit comments