@@ -788,6 +788,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
788788 & to_digit_is_some:: TO_DIGIT_IS_SOME ,
789789 & trait_bounds:: TYPE_REPETITION_IN_BOUNDS ,
790790 & transmute:: CROSSPOINTER_TRANSMUTE ,
791+ & transmute:: TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS ,
791792 & transmute:: TRANSMUTE_BYTES_TO_STR ,
792793 & transmute:: TRANSMUTE_FLOAT_TO_INT ,
793794 & transmute:: TRANSMUTE_INT_TO_BOOL ,
@@ -798,7 +799,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
798799 & transmute:: UNSOUND_COLLECTION_TRANSMUTE ,
799800 & transmute:: USELESS_TRANSMUTE ,
800801 & transmute:: WRONG_TRANSMUTE ,
801- & transmute:: TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS ,
802802 & transmuting_null:: TRANSMUTING_NULL ,
803803 & trivially_copy_pass_by_ref:: TRIVIALLY_COPY_PASS_BY_REF ,
804804 & try_err:: TRY_ERR ,
@@ -1418,6 +1418,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
14181418 LintId :: of( & temporary_assignment:: TEMPORARY_ASSIGNMENT ) ,
14191419 LintId :: of( & to_digit_is_some:: TO_DIGIT_IS_SOME ) ,
14201420 LintId :: of( & transmute:: CROSSPOINTER_TRANSMUTE ) ,
1421+ LintId :: of( & transmute:: TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS ) ,
14211422 LintId :: of( & transmute:: TRANSMUTE_BYTES_TO_STR ) ,
14221423 LintId :: of( & transmute:: TRANSMUTE_FLOAT_TO_INT ) ,
14231424 LintId :: of( & transmute:: TRANSMUTE_INT_TO_BOOL ) ,
@@ -1427,7 +1428,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
14271428 LintId :: of( & transmute:: TRANSMUTE_PTR_TO_REF ) ,
14281429 LintId :: of( & transmute:: UNSOUND_COLLECTION_TRANSMUTE ) ,
14291430 LintId :: of( & transmute:: WRONG_TRANSMUTE ) ,
1430- LintId :: of( & transmute:: TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS ) ,
14311431 LintId :: of( & transmuting_null:: TRANSMUTING_NULL ) ,
14321432 LintId :: of( & try_err:: TRY_ERR ) ,
14331433 LintId :: of( & types:: ABSURD_EXTREME_COMPARISONS ) ,
@@ -1619,14 +1619,14 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
16191619 LintId :: of( & swap:: MANUAL_SWAP ) ,
16201620 LintId :: of( & temporary_assignment:: TEMPORARY_ASSIGNMENT ) ,
16211621 LintId :: of( & transmute:: CROSSPOINTER_TRANSMUTE ) ,
1622+ LintId :: of( & transmute:: TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS ) ,
16221623 LintId :: of( & transmute:: TRANSMUTE_BYTES_TO_STR ) ,
16231624 LintId :: of( & transmute:: TRANSMUTE_FLOAT_TO_INT ) ,
16241625 LintId :: of( & transmute:: TRANSMUTE_INT_TO_BOOL ) ,
16251626 LintId :: of( & transmute:: TRANSMUTE_INT_TO_CHAR ) ,
16261627 LintId :: of( & transmute:: TRANSMUTE_INT_TO_FLOAT ) ,
16271628 LintId :: of( & transmute:: TRANSMUTE_PTR_TO_PTR ) ,
16281629 LintId :: of( & transmute:: TRANSMUTE_PTR_TO_REF ) ,
1629- LintId :: of( & transmute:: TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS ) ,
16301630 LintId :: of( & types:: BORROWED_BOX ) ,
16311631 LintId :: of( & types:: CHAR_LIT_AS_U8 ) ,
16321632 LintId :: of( & types:: TYPE_COMPLEXITY ) ,
0 commit comments