Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit dd9fe01

Browse files
committed
Remove Ord from Binder
1 parent dc95bd6 commit dd9fe01

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
@@ -908,7 +908,7 @@ impl BoundVariableKind {
908908
/// e.g., `liberate_late_bound_regions`).
909909
///
910910
/// `Decodable` and `Encodable` are implemented for `Binder<T>` using the `impl_binder_encode_decode!` macro.
911-
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
911+
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
912912
#[derive(HashStable, Lift)]
913913
pub struct Binder<'tcx, T> {
914914
value: T,

0 commit comments

Comments
 (0)