Skip to content

Commit 380387d

Browse files
committed
Remove Ord from Binder
1 parent 2797ee4 commit 380387d

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_middle/src/ty

1 file changed

+1
-1
lines changed

compiler/rustc_middle/src/ty/sty.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ impl BoundVariableKind {
907907
/// e.g., `liberate_late_bound_regions`).
908908
///
909909
/// `Decodable` and `Encodable` are implemented for `Binder<T>` using the `impl_binder_encode_decode!` macro.
910-
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
910+
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
911911
#[derive(HashStable, Lift)]
912912
pub struct Binder<'tcx, T> {
913913
value: T,

0 commit comments

Comments
 (0)