Remove ord lang item

This commit is contained in:
cad97 2019-12-01 16:09:07 -05:00
parent 4007d4ef26
commit ac57e1b647
No known key found for this signature in database
GPG Key ID: 5DA0F1242D22B9C8
2 changed files with 0 additions and 2 deletions

View File

@ -534,7 +534,6 @@ impl<T: Ord> Ord for Reverse<T> {
/// }
/// }
/// ```
#[lang = "ord"]
#[doc(alias = "<")]
#[doc(alias = ">")]
#[doc(alias = "<=")]

View File

@ -358,7 +358,6 @@ language_item_table! {
// Don't be fooled by the naming here: this lang item denotes `PartialEq`, not `Eq`.
EqTraitLangItem, "eq", eq_trait, Target::Trait;
PartialOrdTraitLangItem, "partial_ord", partial_ord_trait, Target::Trait;
OrdTraitLangItem, "ord", ord_trait, Target::Trait;
// A number of panic-related lang items. The `panic` item corresponds to
// divide-by-zero and various panic cases with `match`. The