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:
parent
e9e13a68d7
commit
0c9a17689a
1 changed files with 0 additions and 1 deletions
|
@ -901,7 +901,6 @@ pub trait Ord: Eq + PartialOrd<Self> {
|
|||
fn clamp(self, min: Self, max: Self) -> Self
|
||||
where
|
||||
Self: Sized,
|
||||
Self: PartialOrd,
|
||||
{
|
||||
assert!(min <= max);
|
||||
if self < min {
|
||||
|
|
Loading…
Add table
Reference in a new issue