Skip to content

Commit adbd11f

Browse files
author
Ype Kingma
committed
After cargo dev update_lints
1 parent bc9e7fc commit adbd11f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5030,7 +5030,6 @@ Released 2018-09-13
50305030
<!-- begin autogenerated links to lint list -->
50315031
[`absolute_paths`]: https://rust-lang.github.io/rust-clippy/master/index.html#absolute_paths
50325032
[`absurd_extreme_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#absurd_extreme_comparisons
5033-
[`implicit_lifetimes_bound_nested_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_lifetimes_bound_nested_ref
50345033
[`alloc_instead_of_core`]: https://rust-lang.github.io/rust-clippy/master/index.html#alloc_instead_of_core
50355034
[`allow_attributes`]: https://rust-lang.github.io/rust-clippy/master/index.html#allow_attributes
50365035
[`allow_attributes_without_reason`]: https://rust-lang.github.io/rust-clippy/master/index.html#allow_attributes_without_reason
@@ -5191,6 +5190,7 @@ Released 2018-09-13
51915190
[`explicit_deref_methods`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_deref_methods
51925191
[`explicit_into_iter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_into_iter_loop
51935192
[`explicit_iter_loop`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_iter_loop
5193+
[`explicit_lifetimes_bound_nested_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_lifetimes_bound_nested_ref
51945194
[`explicit_write`]: https://rust-lang.github.io/rust-clippy/master/index.html#explicit_write
51955195
[`extend_from_slice`]: https://rust-lang.github.io/rust-clippy/master/index.html#extend_from_slice
51965196
[`extend_with_drain`]: https://rust-lang.github.io/rust-clippy/master/index.html#extend_with_drain
@@ -5251,6 +5251,7 @@ Released 2018-09-13
52515251
[`impl_trait_in_params`]: https://rust-lang.github.io/rust-clippy/master/index.html#impl_trait_in_params
52525252
[`implicit_clone`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_clone
52535253
[`implicit_hasher`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_hasher
5254+
[`implicit_lifetimes_bound_nested_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_lifetimes_bound_nested_ref
52545255
[`implicit_return`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_return
52555256
[`implicit_saturating_add`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_saturating_add
52565257
[`implicit_saturating_sub`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_saturating_sub
@@ -5594,7 +5595,6 @@ Released 2018-09-13
55945595
[`ref_option_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#ref_option_ref
55955596
[`ref_patterns`]: https://rust-lang.github.io/rust-clippy/master/index.html#ref_patterns
55965597
[`regex_macro`]: https://rust-lang.github.io/rust-clippy/master/index.html#regex_macro
5597-
[`implicit_lifetimes_bound_nested_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#implicit_bound_nested_ref
55985598
[`repeat_once`]: https://rust-lang.github.io/rust-clippy/master/index.html#repeat_once
55995599
[`repeat_vec_with_capacity`]: https://rust-lang.github.io/rust-clippy/master/index.html#repeat_vec_with_capacity
56005600
[`replace_consts`]: https://rust-lang.github.io/rust-clippy/master/index.html#replace_consts

clippy_lints/src/declared_lints.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,8 +263,8 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
263263
crate::let_with_type_underscore::LET_WITH_TYPE_UNDERSCORE_INFO,
264264
crate::lifetimes::EXTRA_UNUSED_LIFETIMES_INFO,
265265
crate::lifetimes::NEEDLESS_LIFETIMES_INFO,
266-
crate::lifetimes_bound_nested_ref::IMPLICIT_LIFETIMES_BOUND_NESTED_REF_INFO,
267266
crate::lifetimes_bound_nested_ref::EXPLICIT_LIFETIMES_BOUND_NESTED_REF_INFO,
267+
crate::lifetimes_bound_nested_ref::IMPLICIT_LIFETIMES_BOUND_NESTED_REF_INFO,
268268
crate::lines_filter_map_ok::LINES_FILTER_MAP_OK_INFO,
269269
crate::literal_representation::DECIMAL_LITERAL_REPRESENTATION_INFO,
270270
crate::literal_representation::INCONSISTENT_DIGIT_GROUPING_INFO,

0 commit comments

Comments
 (0)