]> git.lizzy.rs Git - rust.git/commit
Merge commit '57b3c4b90f4346b3990c1be387c3b3ca7b78412c' into clippyup
authorflip1995 <philipp.krones@embecosm.com>
Thu, 10 Feb 2022 17:40:06 +0000 (18:40 +0100)
committerflip1995 <philipp.krones@embecosm.com>
Thu, 10 Feb 2022 17:40:06 +0000 (18:40 +0100)
commit611d0398143acef24bc6029810828791a2475b9e
tree7035d411dc0209cdfb1c5c31ac85452a0ffaa8c4
parent5044e3769e838a8b020c2c0d542cad1df66d02fd
Merge commit '57b3c4b90f4346b3990c1be387c3b3ca7b78412c' into clippyup
123 files changed:
CHANGELOG.md
clippy_dev/src/bless.rs
clippy_lints/src/blocks_in_if_conditions.rs
clippy_lints/src/default_union_representation.rs [new file with mode: 0644]
clippy_lints/src/disallowed_methods.rs
clippy_lints/src/disallowed_types.rs
clippy_lints/src/explicit_write.rs
clippy_lints/src/formatting.rs
clippy_lints/src/implicit_hasher.rs
clippy_lints/src/infinite_iter.rs
clippy_lints/src/lib.register_all.rs
clippy_lints/src/lib.register_correctness.rs
clippy_lints/src/lib.register_lints.rs
clippy_lints/src/lib.register_restriction.rs
clippy_lints/src/lib.rs
clippy_lints/src/loops/single_element_loop.rs
clippy_lints/src/loops/utils.rs
clippy_lints/src/matches.rs [deleted file]
clippy_lints/src/matches/infalliable_detructuring_match.rs [new file with mode: 0644]
clippy_lints/src/matches/match_as_ref.rs [new file with mode: 0644]
clippy_lints/src/matches/match_bool.rs [new file with mode: 0644]
clippy_lints/src/matches/match_like_matches.rs [new file with mode: 0644]
clippy_lints/src/matches/match_ref_pats.rs [new file with mode: 0644]
clippy_lints/src/matches/match_same_arms.rs [new file with mode: 0644]
clippy_lints/src/matches/match_single_binding.rs [new file with mode: 0644]
clippy_lints/src/matches/match_wild_enum.rs [new file with mode: 0644]
clippy_lints/src/matches/match_wild_err_arm.rs [new file with mode: 0644]
clippy_lints/src/matches/mod.rs [new file with mode: 0644]
clippy_lints/src/matches/overlapping_arms.rs [new file with mode: 0644]
clippy_lints/src/matches/redundant_pattern_match.rs [new file with mode: 0644]
clippy_lints/src/matches/rest_pat_in_fully_bound_struct.rs [new file with mode: 0644]
clippy_lints/src/matches/single_match.rs [new file with mode: 0644]
clippy_lints/src/matches/wild_in_or_pats.rs [new file with mode: 0644]
clippy_lints/src/methods/chars_cmp.rs
clippy_lints/src/methods/chars_cmp_with_unwrap.rs
clippy_lints/src/methods/manual_saturating_arithmetic.rs
clippy_lints/src/methods/mod.rs
clippy_lints/src/methods/option_map_or_none.rs
clippy_lints/src/methods/option_map_unwrap_or.rs
clippy_lints/src/methods/str_splitn.rs
clippy_lints/src/methods/unnecessary_filter_map.rs
clippy_lints/src/misc.rs
clippy_lints/src/missing_enforced_import_rename.rs
clippy_lints/src/ptr.rs
clippy_lints/src/ranges.rs
clippy_lints/src/swap.rs
clippy_lints/src/transmute/mod.rs
clippy_lints/src/transmute/transmute_float_to_int.rs
clippy_lints/src/transmute/transmute_int_to_bool.rs
clippy_lints/src/transmute/transmute_int_to_char.rs
clippy_lints/src/transmute/transmute_int_to_float.rs
clippy_lints/src/transmute/transmute_num_to_bytes.rs
clippy_lints/src/transmute/transmute_ptr_to_ptr.rs
clippy_lints/src/transmute/transmute_ptr_to_ref.rs
clippy_lints/src/transmute/transmute_ref_to_ref.rs
clippy_lints/src/transmute/transmute_undefined_repr.rs [new file with mode: 0644]
clippy_lints/src/transmute/transmutes_expressible_as_ptr_casts.rs
clippy_lints/src/transmute/unsound_collection_transmute.rs
clippy_lints/src/transmute/useless_transmute.rs
clippy_lints/src/types/box_collection.rs
clippy_lints/src/types/option_option.rs
clippy_lints/src/types/rc_buffer.rs
clippy_lints/src/types/rc_mutex.rs
clippy_lints/src/types/redundant_allocation.rs
clippy_lints/src/unwrap.rs
clippy_lints/src/utils/conf.rs
clippy_lints/src/utils/internal_lints.rs
clippy_lints/src/utils/internal_lints/metadata_collector.rs
clippy_utils/src/consts.rs
clippy_utils/src/higher.rs
clippy_utils/src/hir_utils.rs
clippy_utils/src/lib.rs
clippy_utils/src/macros.rs
clippy_utils/src/ty.rs
doc/common_tools_writing_lints.md
rust-toolchain
tests/compile-test.rs
tests/ui-cargo/multiple_config_files/no_warn/Cargo.toml [new file with mode: 0644]
tests/ui-cargo/multiple_config_files/no_warn/clippy.toml [new file with mode: 0644]
tests/ui-cargo/multiple_config_files/no_warn/src/main.rs [new file with mode: 0644]
tests/ui-cargo/multiple_config_files/warn/.clippy.toml [new file with mode: 0644]
tests/ui-cargo/multiple_config_files/warn/Cargo.toml [new file with mode: 0644]
tests/ui-cargo/multiple_config_files/warn/clippy.toml [new file with mode: 0644]
tests/ui-cargo/multiple_config_files/warn/src/main.rs [new file with mode: 0644]
tests/ui-cargo/multiple_config_files/warn/src/main.stderr [new file with mode: 0644]
tests/ui/crashes/ice-4968.rs
tests/ui/crashes/ice-8250.rs [new file with mode: 0644]
tests/ui/crashes/ice-8250.stderr [new file with mode: 0644]
tests/ui/crashes/ice-8386.rs [new file with mode: 0644]
tests/ui/default_union_representation.rs [new file with mode: 0644]
tests/ui/default_union_representation.stderr [new file with mode: 0644]
tests/ui/eq_op.rs
tests/ui/eq_op.stderr
tests/ui/expect_fun_call.fixed
tests/ui/expect_fun_call.rs
tests/ui/expect_fun_call.stderr
tests/ui/explicit_counter_loop.stderr
tests/ui/explicit_write.fixed
tests/ui/explicit_write.rs
tests/ui/explicit_write.stderr
tests/ui/explicit_write_non_rustfix.rs [deleted file]
tests/ui/explicit_write_non_rustfix.stderr [deleted file]
tests/ui/get_unwrap.fixed
tests/ui/get_unwrap.rs
tests/ui/get_unwrap.stderr
tests/ui/manual_assert.edition2018.fixed
tests/ui/manual_assert.edition2018.stderr
tests/ui/manual_assert.edition2021.fixed
tests/ui/manual_assert.edition2021.stderr
tests/ui/manual_assert.rs
tests/ui/manual_flatten.rs
tests/ui/manual_flatten.stderr
tests/ui/non_expressive_names.stdout [deleted file]
tests/ui/ptr_arg.rs
tests/ui/single_match.rs
tests/ui/single_match.stderr
tests/ui/single_match_else.stderr
tests/ui/starts_ends_with.fixed
tests/ui/starts_ends_with.rs
tests/ui/starts_ends_with.stderr
tests/ui/transmute_undefined_repr.rs [new file with mode: 0644]
tests/ui/transmute_undefined_repr.stderr [new file with mode: 0644]
tests/ui_test/eq_op.rs [deleted file]