@@ -173,7 +173,6 @@ mod dbg_macro;
173173mod default_trait_access;
174174mod dereference;
175175mod derive;
176- mod derive_ord_xor_partial_ord;
177176mod doc;
178177mod double_comparison;
179178mod double_parens;
@@ -514,9 +513,9 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
514513 & default_trait_access:: DEFAULT_TRAIT_ACCESS ,
515514 & dereference:: EXPLICIT_DEREF_METHODS ,
516515 & derive:: DERIVE_HASH_XOR_EQ ,
516+ & derive:: DERIVE_ORD_XOR_PARTIAL_ORD ,
517517 & derive:: EXPL_IMPL_CLONE_ON_COPY ,
518518 & derive:: UNSAFE_DERIVE_DESERIALIZE ,
519- & derive_ord_xor_partial_ord:: DERIVE_ORD_XOR_PARTIAL_ORD ,
520519 & doc:: DOC_MARKDOWN ,
521520 & doc:: MISSING_ERRORS_DOC ,
522521 & doc:: MISSING_SAFETY_DOC ,
@@ -1232,7 +1231,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12321231 LintId :: of( & copies:: IFS_SAME_COND ) ,
12331232 LintId :: of( & copies:: IF_SAME_THEN_ELSE ) ,
12341233 LintId :: of( & derive:: DERIVE_HASH_XOR_EQ ) ,
1235- LintId :: of( & derive_ord_xor_partial_ord :: DERIVE_ORD_XOR_PARTIAL_ORD ) ,
1234+ LintId :: of( & derive :: DERIVE_ORD_XOR_PARTIAL_ORD ) ,
12361235 LintId :: of( & doc:: MISSING_SAFETY_DOC ) ,
12371236 LintId :: of( & doc:: NEEDLESS_DOCTEST_MAIN ) ,
12381237 LintId :: of( & double_comparison:: DOUBLE_COMPARISONS ) ,
@@ -1651,7 +1650,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
16511650 LintId :: of( & copies:: IFS_SAME_COND ) ,
16521651 LintId :: of( & copies:: IF_SAME_THEN_ELSE ) ,
16531652 LintId :: of( & derive:: DERIVE_HASH_XOR_EQ ) ,
1654- LintId :: of( & derive_ord_xor_partial_ord :: DERIVE_ORD_XOR_PARTIAL_ORD ) ,
1653+ LintId :: of( & derive :: DERIVE_ORD_XOR_PARTIAL_ORD ) ,
16551654 LintId :: of( & drop_bounds:: DROP_BOUNDS ) ,
16561655 LintId :: of( & drop_forget_ref:: DROP_COPY ) ,
16571656 LintId :: of( & drop_forget_ref:: DROP_REF ) ,
0 commit comments