File tree 4 files changed +1
-4
lines changed
4 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
- #![ cfg_attr( bootstrap, feature( let_chains) ) ]
2
1
#![ feature( let_else) ]
3
2
#![ feature( once_cell) ]
4
3
#![ feature( rustc_private) ]
Original file line number Diff line number Diff line change 4
4
#![ feature( control_flow_enum) ]
5
5
#![ feature( drain_filter) ]
6
6
#![ feature( iter_intersperse) ]
7
- #![ cfg_attr( bootstrap, feature( let_chains) ) ]
8
7
#![ feature( let_else) ]
9
8
#![ feature( lint_reasons) ]
10
9
#![ feature( never_type) ]
Original file line number Diff line number Diff line change 2
2
#![ feature( box_patterns) ]
3
3
#![ feature( control_flow_enum) ]
4
4
#![ feature( let_else) ]
5
- #![ cfg_attr( bootstrap, feature( let_chains) ) ]
6
5
#![ feature( lint_reasons) ]
7
6
#![ feature( once_cell) ]
8
7
#![ feature( rustc_private) ]
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ struct ClippyCallbacks {
95
95
96
96
impl rustc_driver:: Callbacks for ClippyCallbacks {
97
97
// JUSTIFICATION: necessary in clippy driver to set `mir_opt_level`
98
- #[ cfg_attr ( not ( bootstrap ) , allow( rustc:: bad_opt_access) ) ]
98
+ #[ allow( rustc:: bad_opt_access) ]
99
99
fn config ( & mut self , config : & mut interface:: Config ) {
100
100
let previous = config. register_lints . take ( ) ;
101
101
let clippy_args_var = self . clippy_args_var . take ( ) ;
You can’t perform that action at this time.
0 commit comments