File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -4431,7 +4431,6 @@ Released 2018-09-13
4431
4431
[ `if_then_some_else_none` ] : https://rust-lang.github.io/rust-clippy/master/index.html#if_then_some_else_none
4432
4432
[ `ifs_same_cond` ] : https://rust-lang.github.io/rust-clippy/master/index.html#ifs_same_cond
4433
4433
[ `impl_trait_in_params` ] : https://rust-lang.github.io/rust-clippy/master/index.html#impl_trait_in_params
4434
- [ `impl_trait_param` ] : https://rust-lang.github.io/rust-clippy/master/index.html#impl_trait_param
4435
4434
[ `implicit_clone` ] : https://rust-lang.github.io/rust-clippy/master/index.html#implicit_clone
4436
4435
[ `implicit_hasher` ] : https://rust-lang.github.io/rust-clippy/master/index.html#implicit_hasher
4437
4436
[ `implicit_return` ] : https://rust-lang.github.io/rust-clippy/master/index.html#implicit_return
Original file line number Diff line number Diff line change 1
1
#![ deny( clippy:: borrowed_box) ]
2
2
#![ allow( dead_code, unused_variables) ]
3
- #![ allow( clippy:: uninlined_format_args, clippy:: disallowed_names, clippy:: impl_trait_in_params) ]
3
+ #![ allow(
4
+ clippy:: uninlined_format_args,
5
+ clippy:: disallowed_names,
6
+ clippy:: impl_trait_in_params
7
+ ) ]
4
8
5
9
use std:: fmt:: Display ;
6
10
You can’t perform that action at this time.
0 commit comments