Skip to content

Commit 664d12d

Browse files
committed
Remove Ord from chalk_ir::interner::Interner::DefId
See rust-lang/rust#90317 and rust-lang/rust#90749.
1 parent 977b0a5 commit 664d12d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chalk-ir/src/interner.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ pub trait Interner: Debug + Copy + Eq + Ord + Hash + Sized {
188188
type InternedVariances: Debug + Clone + Eq + Hash;
189189

190190
/// The core "id" type used for trait-ids and the like.
191-
type DefId: Debug + Copy + Eq + Ord + Hash;
191+
type DefId: Debug + Copy + Eq + Hash;
192192

193193
/// The ID type for ADTs
194194
type InternedAdtId: Debug + Copy + Eq + Ord + Hash;

0 commit comments

Comments
 (0)