@@ -1176,6 +1176,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
11761176 LintId :: of( & matches:: SINGLE_MATCH ) ,
11771177 LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
11781178 LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1179+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
11791180 LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
11801181 LintId :: of( & methods:: CHARS_LAST_CMP ) ,
11811182 LintId :: of( & methods:: CHARS_NEXT_CMP ) ,
@@ -1362,6 +1363,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
13621363 LintId :: of( & matches:: MATCH_WILD_ERR_ARM ) ,
13631364 LintId :: of( & matches:: SINGLE_MATCH ) ,
13641365 LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1366+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
13651367 LintId :: of( & methods:: CHARS_LAST_CMP ) ,
13661368 LintId :: of( & methods:: INTO_ITER_ON_REF ) ,
13671369 LintId :: of( & methods:: ITER_CLONED_COLLECT ) ,
@@ -1586,7 +1588,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
15861588 store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
15871589 LintId :: of( & attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
15881590 LintId :: of( & fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
1589- LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
15901591 LintId :: of( & missing_const_for_fn:: MISSING_CONST_FOR_FN ) ,
15911592 LintId :: of( & mul_add:: MANUAL_MUL_ADD ) ,
15921593 LintId :: of( & mutex_atomic:: MUTEX_INTEGER ) ,
0 commit comments