Skip to content

Commit 65fca6d

Browse files
committed
add const hack comment
1 parent a89510e commit 65fca6d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

library/core/src/cmp.rs

+6
Original file line numberDiff line numberDiff line change
@@ -802,6 +802,9 @@ pub trait Ord: Eq + PartialOrd<Self> {
802802
Self: Sized,
803803
Self: ~const Destruct,
804804
{
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.
805808
match self.cmp(&other) {
806809
Ordering::Less | Ordering::Equal => other,
807810
Ordering::Greater => self,
@@ -826,6 +829,9 @@ pub trait Ord: Eq + PartialOrd<Self> {
826829
Self: Sized,
827830
Self: ~const Destruct,
828831
{
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.
829835
match self.cmp(&other) {
830836
Ordering::Less | Ordering::Equal => self,
831837
Ordering::Greater => other,

0 commit comments

Comments
 (0)