@@ -1179,6 +1179,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1179
1179
LintId :: of( & matches:: SINGLE_MATCH ) ,
1180
1180
LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
1181
1181
LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1182
+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1182
1183
LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
1183
1184
LintId :: of( & methods:: CHARS_LAST_CMP ) ,
1184
1185
LintId :: of( & methods:: CHARS_NEXT_CMP ) ,
@@ -1366,6 +1367,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1366
1367
LintId :: of( & matches:: MATCH_WILD_ERR_ARM ) ,
1367
1368
LintId :: of( & matches:: SINGLE_MATCH ) ,
1368
1369
LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1370
+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1369
1371
LintId :: of( & methods:: CHARS_LAST_CMP ) ,
1370
1372
LintId :: of( & methods:: INTO_ITER_ON_REF ) ,
1371
1373
LintId :: of( & methods:: ITER_CLONED_COLLECT ) ,
@@ -1591,7 +1593,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1591
1593
store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
1592
1594
LintId :: of( & attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
1593
1595
LintId :: of( & fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
1594
- LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1595
1596
LintId :: of( & missing_const_for_fn:: MISSING_CONST_FOR_FN ) ,
1596
1597
LintId :: of( & mul_add:: MANUAL_MUL_ADD ) ,
1597
1598
LintId :: of( & mutex_atomic:: MUTEX_INTEGER ) ,
0 commit comments