@@ -1183,6 +1183,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1183
1183
LintId :: of( & matches:: SINGLE_MATCH ) ,
1184
1184
LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
1185
1185
LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1186
+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1186
1187
LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
1187
1188
LintId :: of( & methods:: CHARS_LAST_CMP ) ,
1188
1189
LintId :: of( & methods:: CHARS_NEXT_CMP ) ,
@@ -1370,6 +1371,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1370
1371
LintId :: of( & matches:: MATCH_WILD_ERR_ARM ) ,
1371
1372
LintId :: of( & matches:: SINGLE_MATCH ) ,
1372
1373
LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1374
+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1373
1375
LintId :: of( & methods:: CHARS_LAST_CMP ) ,
1374
1376
LintId :: of( & methods:: INTO_ITER_ON_REF ) ,
1375
1377
LintId :: of( & methods:: ITER_CLONED_COLLECT ) ,
@@ -1595,7 +1597,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1595
1597
store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
1596
1598
LintId :: of( & attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
1597
1599
LintId :: of( & fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
1598
- LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1599
1600
LintId :: of( & missing_const_for_fn:: MISSING_CONST_FOR_FN ) ,
1600
1601
LintId :: of( & mul_add:: MANUAL_MUL_ADD ) ,
1601
1602
LintId :: of( & mutex_atomic:: MUTEX_INTEGER ) ,
0 commit comments