-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #70809 - matthiaskrgr:submodule_upd, r=Mark-Simulacrum
submodules: update clippy from 326b220 to 7907abe Changes: ```` Rustup to #70634 Update clippy_lints/src/types.rs Update types.rs Update types.rs Improve docs for option_option useless Rc<Rc<T>>, Rc<Box<T>>, Rc<&T>, Box<&T> Allow let_underscore Update option_option ui test Test for ignoring let_underscore_must_use Downgrade option_option to pedantic ```` Fixes #70709
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule clippy
updated
17 files
+1 −0 | CHANGELOG.md | |
+1 −1 | clippy_lints/src/escape.rs | |
+1 −1 | clippy_lints/src/large_enum_variant.rs | |
+6 −7 | clippy_lints/src/let_underscore.rs | |
+4 −2 | clippy_lints/src/lib.rs | |
+117 −9 | clippy_lints/src/types.rs | |
+4 −12 | clippy_lints/src/utils/mod.rs | |
+1 −0 | clippy_lints/src/utils/paths.rs | |
+8 −1 | src/lintlist/mod.rs | |
+3 −0 | tests/ui/let_underscore_must_use.rs | |
+1 −1 | tests/ui/must_use_candidates.fixed | |
+1 −1 | tests/ui/must_use_candidates.rs | |
+2 −0 | tests/ui/option_option.rs | |
+14 −10 | tests/ui/option_option.stderr | |
+48 −0 | tests/ui/redundant_allocation.fixed | |
+48 −0 | tests/ui/redundant_allocation.rs | |
+52 −0 | tests/ui/redundant_allocation.stderr |