@@ -1171,6 +1171,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1171
1171
LintId :: of( & matches:: SINGLE_MATCH ) ,
1172
1172
LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
1173
1173
LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1174
+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1174
1175
LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
1175
1176
LintId :: of( & methods:: CHARS_LAST_CMP ) ,
1176
1177
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 ) ,
@@ -1581,7 +1583,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1581
1583
store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
1582
1584
LintId :: of( & attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
1583
1585
LintId :: of( & fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
1584
- LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
1585
1586
LintId :: of( & missing_const_for_fn:: MISSING_CONST_FOR_FN ) ,
1586
1587
LintId :: of( & mul_add:: MANUAL_MUL_ADD ) ,
1587
1588
LintId :: of( & mutex_atomic:: MUTEX_INTEGER ) ,
0 commit comments