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
This commit is contained in:
Arthur Carcano 2024-09-17 20:03:59 +02:00
parent e9e13a68d7
commit 0c9a17689a

View file

@ -901,7 +901,6 @@ fn min(self, other: Self) -> Self
fn clamp(self, min: Self, max: Self) -> Self
where
Self: Sized,
Self: PartialOrd,
{
assert!(min <= max);
if self < min {