mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 17:18:32 +03:00
0a35418d34
Remove uneeded PartialOrd bound in cmp::Ord::clamp
There is a `Self: PartialOrd` bound in `Ord::clamp`, but it is already required by the trait itself. Likely a left-over from the const trait deletion in 76dbe29104.
Reported-by: `@noeensarguet`