@@ -1179,6 +1179,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
11791179 LintId :: of( & matches:: SINGLE_MATCH ) ,
11801180 LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
11811181 LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1182+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
11821183 LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
11831184 LintId :: of( & methods:: CHARS_LAST_CMP ) ,
11841185 LintId :: of( & methods:: CHARS_NEXT_CMP ) ,
@@ -1366,6 +1367,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
13661367 LintId :: of( & matches:: MATCH_WILD_ERR_ARM ) ,
13671368 LintId :: of( & matches:: SINGLE_MATCH ) ,
13681369 LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1370+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
13691371 LintId :: of( & methods:: CHARS_LAST_CMP ) ,
13701372 LintId :: of( & methods:: INTO_ITER_ON_REF ) ,
13711373 LintId :: of( & methods:: ITER_CLONED_COLLECT ) ,
@@ -1591,7 +1593,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
15911593 store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
15921594 LintId :: of( & attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
15931595 LintId :: of( & fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
1594- LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
15951596 LintId :: of( & missing_const_for_fn:: MISSING_CONST_FOR_FN ) ,
15961597 LintId :: of( & mul_add:: MANUAL_MUL_ADD ) ,
15971598 LintId :: of( & mutex_atomic:: MUTEX_INTEGER ) ,
0 commit comments