@@ -1480,6 +1480,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
14801480 LintId :: of( & types:: CHAR_LIT_AS_U8 ) ,
14811481 LintId :: of( & types:: FN_TO_NUMERIC_CAST ) ,
14821482 LintId :: of( & types:: FN_TO_NUMERIC_CAST_WITH_TRUNCATION ) ,
1483+ LintId :: of( & types:: RC_BUFFER ) ,
14831484 LintId :: of( & types:: REDUNDANT_ALLOCATION ) ,
14841485 LintId :: of( & types:: TYPE_COMPLEXITY ) ,
14851486 LintId :: of( & types:: UNIT_ARG ) ,
@@ -1780,6 +1781,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
17801781 LintId :: of( & slow_vector_initialization:: SLOW_VECTOR_INITIALIZATION ) ,
17811782 LintId :: of( & stable_sort_primitive:: STABLE_SORT_PRIMITIVE ) ,
17821783 LintId :: of( & types:: BOX_VEC ) ,
1784+ LintId :: of( & types:: RC_BUFFER ) ,
17831785 LintId :: of( & types:: REDUNDANT_ALLOCATION ) ,
17841786 LintId :: of( & vec:: USELESS_VEC ) ,
17851787 ] ) ;
@@ -1805,7 +1807,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
18051807 LintId :: of( & path_buf_push_overwrite:: PATH_BUF_PUSH_OVERWRITE ) ,
18061808 LintId :: of( & redundant_pub_crate:: REDUNDANT_PUB_CRATE ) ,
18071809 LintId :: of( & transmute:: USELESS_TRANSMUTE ) ,
1808- LintId :: of( & types:: RC_BUFFER ) ,
18091810 LintId :: of( & use_self:: USE_SELF ) ,
18101811 ] ) ;
18111812}
0 commit comments