@@ -173,6 +173,7 @@ mod dbg_macro;
173173mod default_trait_access;
174174mod dereference;
175175mod derive;
176+ mod derive_ord_xor_partial_ord;
176177mod doc;
177178mod double_comparison;
178179mod double_parens;
@@ -515,6 +516,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
515516 & derive:: DERIVE_HASH_XOR_EQ ,
516517 & derive:: EXPL_IMPL_CLONE_ON_COPY ,
517518 & derive:: UNSAFE_DERIVE_DESERIALIZE ,
519+ & derive_ord_xor_partial_ord:: DERIVE_ORD_XOR_PARTIAL_ORD ,
518520 & doc:: DOC_MARKDOWN ,
519521 & doc:: MISSING_ERRORS_DOC ,
520522 & doc:: MISSING_SAFETY_DOC ,
@@ -1230,6 +1232,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12301232 LintId :: of( & copies:: IFS_SAME_COND ) ,
12311233 LintId :: of( & copies:: IF_SAME_THEN_ELSE ) ,
12321234 LintId :: of( & derive:: DERIVE_HASH_XOR_EQ ) ,
1235+ LintId :: of( & derive_ord_xor_partial_ord:: DERIVE_ORD_XOR_PARTIAL_ORD ) ,
12331236 LintId :: of( & doc:: MISSING_SAFETY_DOC ) ,
12341237 LintId :: of( & doc:: NEEDLESS_DOCTEST_MAIN ) ,
12351238 LintId :: of( & double_comparison:: DOUBLE_COMPARISONS ) ,
@@ -1648,6 +1651,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
16481651 LintId :: of( & copies:: IFS_SAME_COND ) ,
16491652 LintId :: of( & copies:: IF_SAME_THEN_ELSE ) ,
16501653 LintId :: of( & derive:: DERIVE_HASH_XOR_EQ ) ,
1654+ LintId :: of( & derive_ord_xor_partial_ord:: DERIVE_ORD_XOR_PARTIAL_ORD ) ,
16511655 LintId :: of( & drop_bounds:: DROP_BOUNDS ) ,
16521656 LintId :: of( & drop_forget_ref:: DROP_COPY ) ,
16531657 LintId :: of( & drop_forget_ref:: DROP_REF ) ,
0 commit comments