@@ -1170,6 +1170,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
11701170 LintId :: of( & matches:: SINGLE_MATCH ) ,
11711171 LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
11721172 LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1173+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
11731174 LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
11741175 LintId :: of( & methods:: CHARS_LAST_CMP ) ,
11751176 LintId :: of( & methods:: CHARS_NEXT_CMP ) ,
@@ -1357,6 +1358,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
13571358 LintId :: of( & matches:: MATCH_WILD_ERR_ARM ) ,
13581359 LintId :: of( & matches:: SINGLE_MATCH ) ,
13591360 LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1361+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
13601362 LintId :: of( & methods:: CHARS_LAST_CMP ) ,
13611363 LintId :: of( & methods:: INTO_ITER_ON_REF ) ,
13621364 LintId :: of( & methods:: ITER_CLONED_COLLECT ) ,
@@ -1582,7 +1584,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
15821584 store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
15831585 LintId :: of( & attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
15841586 LintId :: of( & fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
1585- LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
15861587 LintId :: of( & missing_const_for_fn:: MISSING_CONST_FOR_FN ) ,
15871588 LintId :: of( & mul_add:: MANUAL_MUL_ADD ) ,
15881589 LintId :: of( & mutex_atomic:: MUTEX_INTEGER ) ,
0 commit comments