File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -654,6 +654,7 @@ All notable changes to this project will be documented in this file.
654
654
[ `explicit_iter_loop` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#explicit_iter_loop
655
655
[ `explicit_write` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#explicit_write
656
656
[ `extend_from_slice` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#extend_from_slice
657
+ [ `extra_unused_lifetimes` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
657
658
[ `fallible_impl_from` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#fallible_impl_from
658
659
[ `filter_map` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#filter_map
659
660
[ `filter_next` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#filter_next
@@ -835,7 +836,6 @@ All notable changes to this project will be documented in this file.
835
836
[ `unused_collect` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#unused_collect
836
837
[ `unused_io_amount` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#unused_io_amount
837
838
[ `unused_label` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#unused_label
838
- [ `unused_lifetimes` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#unused_lifetimes
839
839
[ `use_debug` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#use_debug
840
840
[ `use_self` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#use_self
841
841
[ `used_underscore_binding` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#used_underscore_binding
Original file line number Diff line number Diff line change @@ -542,8 +542,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
542
542
len_zero:: LEN_WITHOUT_IS_EMPTY ,
543
543
len_zero:: LEN_ZERO ,
544
544
let_if_seq:: USELESS_LET_IF_SEQ ,
545
- lifetimes:: NEEDLESS_LIFETIMES ,
546
545
lifetimes:: EXTRA_UNUSED_LIFETIMES ,
546
+ lifetimes:: NEEDLESS_LIFETIMES ,
547
547
literal_representation:: INCONSISTENT_DIGIT_GROUPING ,
548
548
literal_representation:: LARGE_DIGIT_GROUPS ,
549
549
literal_representation:: UNREADABLE_LITERAL ,
@@ -785,8 +785,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
785
785
identity_conversion:: IDENTITY_CONVERSION ,
786
786
identity_op:: IDENTITY_OP ,
787
787
int_plus_one:: INT_PLUS_ONE ,
788
- lifetimes:: NEEDLESS_LIFETIMES ,
789
788
lifetimes:: EXTRA_UNUSED_LIFETIMES ,
789
+ lifetimes:: NEEDLESS_LIFETIMES ,
790
790
loops:: EXPLICIT_COUNTER_LOOP ,
791
791
loops:: MUT_RANGE_BOUND ,
792
792
loops:: WHILE_LET_LOOP ,
You can’t perform that action at this time.
0 commit comments