Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

submodules: update clippy from 8b7f7e66 to 74eae9dc #69692

Merged
merged 1 commit into from
Mar 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tools/clippy
Submodule clippy updated 43 files
+1 −2 .github/workflows/clippy_bors.yml
+1 −0 CHANGELOG.md
+1 −1 README.md
+1 −0 clippy_lints/src/attrs.rs
+1 −1 clippy_lints/src/consts.rs
+2 −2 clippy_lints/src/doc.rs
+3 −4 clippy_lints/src/float_literal.rs
+127 −4 clippy_lints/src/floating_point_arithmetic.rs
+5 −1 clippy_lints/src/indexing_slicing.rs
+1 −2 clippy_lints/src/inherent_to_string.rs
+3 −1 clippy_lints/src/lib.rs
+6 −220 clippy_lints/src/literal_representation.rs
+56 −3 clippy_lints/src/matches.rs
+7 −1 clippy_lints/src/methods/mod.rs
+1 −1 clippy_lints/src/neg_cmp_op_on_partial_ord.rs
+52 −12 clippy_lints/src/question_mark.rs
+23 −25 clippy_lints/src/types.rs
+1 −0 clippy_lints/src/utils/mod.rs
+227 −0 clippy_lints/src/utils/numeric_literal.rs
+1 −2 clippy_lints/src/utils/paths.rs
+0 −2 clippy_lints/src/utils/sugg.rs
+156 −120 clippy_lints/src/write.rs
+8 −1 src/lintlist/mod.rs
+1 −1 tests/ui/author/blocks.rs
+1 −4 tests/ui/author/blocks.stdout
+18 −0 tests/ui/crashes/ice-5223.rs
+9 −0 tests/ui/crashes/ice-5238.rs
+98 −0 tests/ui/floating_point_abs.fixed
+126 −0 tests/ui/floating_point_abs.rs
+80 −0 tests/ui/floating_point_abs.stderr
+1 −7 tests/ui/print.stderr
+113 −0 tests/ui/question_mark.fixed
+30 −0 tests/ui/question_mark.rs
+48 −15 tests/ui/question_mark.stderr
+30 −0 tests/ui/rest_pat_in_fully_bound_structs.rs
+27 −0 tests/ui/rest_pat_in_fully_bound_structs.stderr
+1 −1 tests/ui/swap.fixed
+1 −1 tests/ui/swap.rs
+6 −0 tests/ui/unnecessary_cast_fixable.fixed
+6 −0 tests/ui/unnecessary_cast_fixable.rs
+4 −0 tests/ui/useless_attribute.fixed
+4 −0 tests/ui/useless_attribute.rs
+1 −1 tests/ui/useless_attribute.stderr