@@ -1170,6 +1170,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1170
1170
LintId :: of( & matches:: SINGLE_MATCH ) ,
1171
1171
LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
1172
1172
LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1173
+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1173
1174
LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
1174
1175
LintId :: of( & methods:: CHARS_LAST_CMP ) ,
1175
1176
LintId :: of( & methods:: CHARS_NEXT_CMP ) ,
@@ -1357,6 +1358,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1357
1358
LintId :: of( & matches:: MATCH_WILD_ERR_ARM ) ,
1358
1359
LintId :: of( & matches:: SINGLE_MATCH ) ,
1359
1360
LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1361
+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1360
1362
LintId :: of( & methods:: CHARS_LAST_CMP ) ,
1361
1363
LintId :: of( & methods:: INTO_ITER_ON_REF ) ,
1362
1364
LintId :: of( & methods:: ITER_CLONED_COLLECT ) ,
@@ -1582,7 +1584,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1582
1584
store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
1583
1585
LintId :: of( & attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
1584
1586
LintId :: of( & fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
1585
- LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1586
1587
LintId :: of( & missing_const_for_fn:: MISSING_CONST_FOR_FN ) ,
1587
1588
LintId :: of( & mul_add:: MANUAL_MUL_ADD ) ,
1588
1589
LintId :: of( & mutex_atomic:: MUTEX_INTEGER ) ,
0 commit comments