Rollup merge of #130481 - krtab:clamp_partial_ord, r=cuviper
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:
commit
0a35418d34
@ -901,7 +901,6 @@ fn min(self, other: Self) -> Self
|
|||||||
fn clamp(self, min: Self, max: Self) -> Self
|
fn clamp(self, min: Self, max: Self) -> Self
|
||||||
where
|
where
|
||||||
Self: Sized,
|
Self: Sized,
|
||||||
Self: PartialOrd,
|
|
||||||
{
|
{
|
||||||
assert!(min <= max);
|
assert!(min <= max);
|
||||||
if self < min {
|
if self < min {
|
||||||
|
Loading…
Reference in New Issue
Block a user