@@ -1176,6 +1176,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1176
1176
LintId :: of( & matches:: SINGLE_MATCH ) ,
1177
1177
LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
1178
1178
LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1179
+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1179
1180
LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
1180
1181
LintId :: of( & methods:: CHARS_LAST_CMP ) ,
1181
1182
LintId :: of( & methods:: CHARS_NEXT_CMP ) ,
@@ -1362,6 +1363,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1362
1363
LintId :: of( & matches:: MATCH_WILD_ERR_ARM ) ,
1363
1364
LintId :: of( & matches:: SINGLE_MATCH ) ,
1364
1365
LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1366
+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1365
1367
LintId :: of( & methods:: CHARS_LAST_CMP ) ,
1366
1368
LintId :: of( & methods:: INTO_ITER_ON_REF ) ,
1367
1369
LintId :: of( & methods:: ITER_CLONED_COLLECT ) ,
@@ -1586,7 +1588,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1586
1588
store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
1587
1589
LintId :: of( & attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
1588
1590
LintId :: of( & fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
1589
- LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1590
1591
LintId :: of( & missing_const_for_fn:: MISSING_CONST_FOR_FN ) ,
1591
1592
LintId :: of( & mul_add:: MANUAL_MUL_ADD ) ,
1592
1593
LintId :: of( & mutex_atomic:: MUTEX_INTEGER ) ,
0 commit comments