Skip to content

Commit f30db14

Browse files
authored
Merge pull request #2805 from reiner-dolp/update_lints
running update lints script
2 parents d78b787 + 78b8d5c commit f30db14

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -654,6 +654,7 @@ All notable changes to this project will be documented in this file.
654654
[`explicit_iter_loop`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#explicit_iter_loop
655655
[`explicit_write`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#explicit_write
656656
[`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
657658
[`fallible_impl_from`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#fallible_impl_from
658659
[`filter_map`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#filter_map
659660
[`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.
835836
[`unused_collect`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#unused_collect
836837
[`unused_io_amount`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#unused_io_amount
837838
[`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
839839
[`use_debug`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#use_debug
840840
[`use_self`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#use_self
841841
[`used_underscore_binding`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#used_underscore_binding

clippy_lints/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -542,8 +542,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
542542
len_zero::LEN_WITHOUT_IS_EMPTY,
543543
len_zero::LEN_ZERO,
544544
let_if_seq::USELESS_LET_IF_SEQ,
545-
lifetimes::NEEDLESS_LIFETIMES,
546545
lifetimes::EXTRA_UNUSED_LIFETIMES,
546+
lifetimes::NEEDLESS_LIFETIMES,
547547
literal_representation::INCONSISTENT_DIGIT_GROUPING,
548548
literal_representation::LARGE_DIGIT_GROUPS,
549549
literal_representation::UNREADABLE_LITERAL,
@@ -785,8 +785,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
785785
identity_conversion::IDENTITY_CONVERSION,
786786
identity_op::IDENTITY_OP,
787787
int_plus_one::INT_PLUS_ONE,
788-
lifetimes::NEEDLESS_LIFETIMES,
789788
lifetimes::EXTRA_UNUSED_LIFETIMES,
789+
lifetimes::NEEDLESS_LIFETIMES,
790790
loops::EXPLICIT_COUNTER_LOOP,
791791
loops::MUT_RANGE_BOUND,
792792
loops::WHILE_LET_LOOP,

0 commit comments

Comments
 (0)