Skip to content

Commit

Permalink
Update Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
flip1995 committed Apr 29, 2020
1 parent e91aebc commit 891b0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/clippy
Submodule clippy updated 40 files
+2 −0 CHANGELOG.md
+152 −27 clippy_lints/src/attrs.rs
+3 −3 clippy_lints/src/consts.rs
+2 −2 clippy_lints/src/entry.rs
+1 −1 clippy_lints/src/escape.rs
+3 −3 clippy_lints/src/format.rs
+7 −2 clippy_lints/src/functions.rs
+2 −2 clippy_lints/src/if_let_mutex.rs
+3 −3 clippy_lints/src/inherent_to_string.rs
+9 −1 clippy_lints/src/lib.rs
+8 −8 clippy_lints/src/loops.rs
+89 −0 clippy_lints/src/match_on_vec_items.rs
+15 −8 clippy_lints/src/methods/inefficient_to_string.rs
+10 −10 clippy_lints/src/methods/mod.rs
+3 −2 clippy_lints/src/misc.rs
+2 −2 clippy_lints/src/mutex_atomic.rs
+5 −6 clippy_lints/src/needless_pass_by_value.rs
+1 −1 clippy_lints/src/ptr.rs
+4 −3 clippy_lints/src/redundant_clone.rs
+2 −2 clippy_lints/src/strings.rs
+3 −3 clippy_lints/src/swap.rs
+7 −7 clippy_lints/src/types.rs
+10 −9 clippy_lints/src/utils/mod.rs
+0 −2 clippy_lints/src/utils/paths.rs
+1 −1 clippy_lints/src/utils/usage.rs
+1 −1 clippy_lints/src/wildcard_imports.rs
+14 −0 src/lintlist/mod.rs
+2 −2 tests/ui/implicit_saturating_sub.fixed
+2 −2 tests/ui/implicit_saturating_sub.rs
+130 −0 tests/ui/match_on_vec_items.rs
+52 −0 tests/ui/match_on_vec_items.stderr
+30 −0 tests/ui/mismatched_target_os_non_unix.fixed
+30 −0 tests/ui/mismatched_target_os_non_unix.rs
+51 −0 tests/ui/mismatched_target_os_non_unix.stderr
+62 −0 tests/ui/mismatched_target_os_unix.fixed
+62 −0 tests/ui/mismatched_target_os_unix.rs
+183 −0 tests/ui/mismatched_target_os_unix.stderr
+17 −0 tests/ui/used_underscore_binding.rs
+12 −6 tests/ui/used_underscore_binding.stderr
+0 −7 util/dev

0 comments on commit 891b0e2

Please sign in to comment.