Skip to content

Commit 3d2c5a1

Browse files
committed
perform update_lints
1 parent 29ad871 commit 3d2c5a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5888,6 +5888,7 @@ Released 2018-09-13
58885888
[`inverted_saturating_sub`]: https://rust-lang.github.io/rust-clippy/master/index.html#inverted_saturating_sub
58895889
[`invisible_characters`]: https://rust-lang.github.io/rust-clippy/master/index.html#invisible_characters
58905890
[`io_other_error`]: https://rust-lang.github.io/rust-clippy/master/index.html#io_other_error
5891+
[`ipv4v6_constant_hardcode`]: https://rust-lang.github.io/rust-clippy/master/index.html#ipv4v6_constant_hardcode
58915892
[`is_digit_ascii_radix`]: https://rust-lang.github.io/rust-clippy/master/index.html#is_digit_ascii_radix
58925893
[`items_after_statements`]: https://rust-lang.github.io/rust-clippy/master/index.html#items_after_statements
58935894
[`items_after_test_module`]: https://rust-lang.github.io/rust-clippy/master/index.html#items_after_test_module
@@ -5937,7 +5938,6 @@ Released 2018-09-13
59375938
[`lint_groups_priority`]: https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority
59385939
[`literal_string_with_formatting_args`]: https://rust-lang.github.io/rust-clippy/master/index.html#literal_string_with_formatting_args
59395940
[`little_endian_bytes`]: https://rust-lang.github.io/rust-clippy/master/index.html#little_endian_bytes
5940-
[`ipv4v6_constant_hardcode`]: https://rust-lang.github.io/rust-clippy/master/index.html#ipv4v6_constant_hardcode
59415941
[`logic_bug`]: https://rust-lang.github.io/rust-clippy/master/index.html#logic_bug
59425942
[`lossy_float_literal`]: https://rust-lang.github.io/rust-clippy/master/index.html#lossy_float_literal
59435943
[`macro_metavars_in_unsafe`]: https://rust-lang.github.io/rust-clippy/master/index.html#macro_metavars_in_unsafe

clippy_lints/src/declared_lints.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ pub static LINTS: &[&crate::LintInfo] = &[
379379
crate::methods::INSPECT_FOR_EACH_INFO,
380380
crate::methods::INTO_ITER_ON_REF_INFO,
381381
crate::methods::IO_OTHER_ERROR_INFO,
382+
crate::methods::IPV4V6_CONSTANT_HARDCODE_INFO,
382383
crate::methods::IS_DIGIT_ASCII_RADIX_INFO,
383384
crate::methods::ITERATOR_STEP_BY_ZERO_INFO,
384385
crate::methods::ITER_CLONED_COLLECT_INFO,
@@ -397,7 +398,6 @@ pub static LINTS: &[&crate::LintInfo] = &[
397398
crate::methods::ITER_SKIP_ZERO_INFO,
398399
crate::methods::ITER_WITH_DRAIN_INFO,
399400
crate::methods::JOIN_ABSOLUTE_PATHS_INFO,
400-
crate::methods::IPV4V6_CONSTANT_HARDCODE_INFO,
401401
crate::methods::MANUAL_CONTAINS_INFO,
402402
crate::methods::MANUAL_C_STR_LITERALS_INFO,
403403
crate::methods::MANUAL_FILTER_MAP_INFO,

0 commit comments

Comments
 (0)