@@ -200,7 +200,7 @@ mod escape;
200
200
mod eta_reduction;
201
201
mod eval_order_dependence;
202
202
mod excessive_bools;
203
- mod exhaustive_enums ;
203
+ mod exhaustive_items ;
204
204
mod exit;
205
205
mod explicit_write;
206
206
mod fallible_impl_from;
@@ -612,7 +612,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
612
612
& eval_order_dependence:: EVAL_ORDER_DEPENDENCE ,
613
613
& excessive_bools:: FN_PARAMS_EXCESSIVE_BOOLS ,
614
614
& excessive_bools:: STRUCT_EXCESSIVE_BOOLS ,
615
- & exhaustive_enums :: EXHAUSTIVE_ENUMS ,
615
+ & exhaustive_items :: EXHAUSTIVE_ENUMS ,
616
616
& exit:: EXIT ,
617
617
& explicit_write:: EXPLICIT_WRITE ,
618
618
& fallible_impl_from:: FALLIBLE_IMPL_FROM ,
@@ -1098,7 +1098,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1098
1098
store. register_late_pass ( || box eval_order_dependence:: EvalOrderDependence ) ;
1099
1099
store. register_late_pass ( || box missing_doc:: MissingDoc :: new ( ) ) ;
1100
1100
store. register_late_pass ( || box missing_inline:: MissingInline ) ;
1101
- store. register_late_pass ( move || box exhaustive_enums :: ExhaustiveEnums ) ;
1101
+ store. register_late_pass ( move || box exhaustive_items :: ExhaustiveItems ) ;
1102
1102
store. register_late_pass ( || box if_let_some_result:: OkIfLet ) ;
1103
1103
store. register_late_pass ( || box partialeq_ne_impl:: PartialEqNeImpl ) ;
1104
1104
store. register_late_pass ( || box unused_io_amount:: UnusedIoAmount ) ;
@@ -1249,7 +1249,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1249
1249
LintId :: of( & create_dir:: CREATE_DIR ) ,
1250
1250
LintId :: of( & dbg_macro:: DBG_MACRO ) ,
1251
1251
LintId :: of( & else_if_without_else:: ELSE_IF_WITHOUT_ELSE ) ,
1252
- LintId :: of( & exhaustive_enums :: EXHAUSTIVE_ENUMS ) ,
1252
+ LintId :: of( & exhaustive_items :: EXHAUSTIVE_ENUMS ) ,
1253
1253
LintId :: of( & exit:: EXIT ) ,
1254
1254
LintId :: of( & float_literal:: LOSSY_FLOAT_LITERAL ) ,
1255
1255
LintId :: of( & implicit_return:: IMPLICIT_RETURN ) ,
0 commit comments