File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -802,6 +802,9 @@ pub trait Ord: Eq + PartialOrd<Self> {
802
802
Self : Sized ,
803
803
Self : ~const Destruct ,
804
804
{
805
+ // HACK(fee1-dead): go back to using `self.max_by(other, Ord::cmp)`
806
+ // when trait methods are allowed to be used when a const closure is
807
+ // expected.
805
808
match self . cmp ( & other) {
806
809
Ordering :: Less | Ordering :: Equal => other,
807
810
Ordering :: Greater => self ,
@@ -826,6 +829,9 @@ pub trait Ord: Eq + PartialOrd<Self> {
826
829
Self : Sized ,
827
830
Self : ~const Destruct ,
828
831
{
832
+ // HACK(fee1-dead): go back to using `self.min_by(other, Ord::cmp)`
833
+ // when trait methods are allowed to be used when a const closure is
834
+ // expected.
829
835
match self . cmp ( & other) {
830
836
Ordering :: Less | Ordering :: Equal => self ,
831
837
Ordering :: Greater => other,
You can’t perform that action at this time.
0 commit comments