Skip to content

Commit 58a605f

Browse files
committed
Rerun cargo dev update_lints
1 parent c0aa1f7 commit 58a605f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3596,7 +3596,6 @@ Released 2018-09-13
35963596
[`needless_bool`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_bool
35973597
[`needless_borrow`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
35983598
[`needless_borrowed_reference`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference
3599-
[`needless_parens_on_range_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_parens_on_range_literal
36003599
[`needless_collect`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_collect
36013600
[`needless_continue`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_continue
36023601
[`needless_doctest_main`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_doctest_main
@@ -3606,6 +3605,7 @@ Released 2018-09-13
36063605
[`needless_match`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_match
36073606
[`needless_option_as_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_option_as_deref
36083607
[`needless_option_take`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_option_take
3608+
[`needless_parens_on_range_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_parens_on_range_literal
36093609
[`needless_pass_by_value`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_pass_by_value
36103610
[`needless_question_mark`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_question_mark
36113611
[`needless_range_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#needless_range_loop

clippy_lints/src/lib.register_all.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
241241
LintId::of(needless_bool::BOOL_COMPARISON),
242242
LintId::of(needless_bool::NEEDLESS_BOOL),
243243
LintId::of(needless_borrowed_ref::NEEDLESS_BORROWED_REFERENCE),
244-
LintId::of(needless_parens_on_range_literal::NEEDLESS_PARENS_ON_RANGE_LITERAL),
245244
LintId::of(needless_late_init::NEEDLESS_LATE_INIT),
245+
LintId::of(needless_parens_on_range_literal::NEEDLESS_PARENS_ON_RANGE_LITERAL),
246246
LintId::of(needless_question_mark::NEEDLESS_QUESTION_MARK),
247247
LintId::of(needless_update::NEEDLESS_UPDATE),
248248
LintId::of(neg_cmp_op_on_partial_ord::NEG_CMP_OP_ON_PARTIAL_ORD),

clippy_lints/src/lib.register_lints.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,10 +405,10 @@ store.register_lints(&[
405405
needless_bool::BOOL_COMPARISON,
406406
needless_bool::NEEDLESS_BOOL,
407407
needless_borrowed_ref::NEEDLESS_BORROWED_REFERENCE,
408-
needless_parens_on_range_literal::NEEDLESS_PARENS_ON_RANGE_LITERAL,
409408
needless_continue::NEEDLESS_CONTINUE,
410409
needless_for_each::NEEDLESS_FOR_EACH,
411410
needless_late_init::NEEDLESS_LATE_INIT,
411+
needless_parens_on_range_literal::NEEDLESS_PARENS_ON_RANGE_LITERAL,
412412
needless_pass_by_value::NEEDLESS_PASS_BY_VALUE,
413413
needless_question_mark::NEEDLESS_QUESTION_MARK,
414414
needless_update::NEEDLESS_UPDATE,

clippy_lints/src/lib.register_style.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ store.register_group(true, "clippy::style", Some("clippy_style"), vec![
9090
LintId::of(misc_early::REDUNDANT_PATTERN),
9191
LintId::of(mut_mutex_lock::MUT_MUTEX_LOCK),
9292
LintId::of(mut_reference::UNNECESSARY_MUT_PASSED),
93-
LintId::of(needless_parens_on_range_literal::NEEDLESS_PARENS_ON_RANGE_LITERAL),
9493
LintId::of(needless_late_init::NEEDLESS_LATE_INIT),
94+
LintId::of(needless_parens_on_range_literal::NEEDLESS_PARENS_ON_RANGE_LITERAL),
9595
LintId::of(neg_multiply::NEG_MULTIPLY),
9696
LintId::of(new_without_default::NEW_WITHOUT_DEFAULT),
9797
LintId::of(non_copy_const::BORROW_INTERIOR_MUTABLE_CONST),

0 commit comments

Comments
 (0)