Skip to content

Commit 09aaf87

Browse files
committed
rust: enable clippy::ignored_unit_patterns lint
In Rust 1.73.0, Clippy introduced the `ignored_unit_patterns` lint [1]: > Matching with `()` explicitly instead of `_` outlines the fact that > the pattern contains no data. Also it would detect a type change > that `_` would ignore. There is only a single case that requires a change: error: matching over `()` is more explicit --> rust/kernel/types.rs:176:45 | 176 | ScopeGuard::new_with_data((), move |_| cleanup()) | ^ help: use `()` instead of `_`: `()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ignored_unit_patterns = note: requested on the command line with `-D clippy::ignored-unit-patterns` Thus clean it up and enable the lint -- no functional change intended. Link: https://rust-lang.github.io/rust-clippy/master/index.html#/ignored_unit_patterns [1] Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
1 parent 4a70af8 commit 09aaf87

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,7 @@ export rust_common_flags := --edition=2021 \
452452
-Wunreachable_pub \
453453
-Wclippy::all \
454454
-Wclippy::dbg_macro \
455+
-Wclippy::ignored_unit_patterns \
455456
-Wclippy::mut_mut \
456457
-Wclippy::needless_bitwise_bool \
457458
-Wclippy::needless_continue \

rust/kernel/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ impl<T, F: FnOnce(T)> ScopeGuard<T, F> {
225225
impl ScopeGuard<(), fn(())> {
226226
/// Creates a new guarded object with the given cleanup function.
227227
pub fn new(cleanup: impl FnOnce()) -> ScopeGuard<(), impl FnOnce(())> {
228-
ScopeGuard::new_with_data((), move |_| cleanup())
228+
ScopeGuard::new_with_data((), move |()| cleanup())
229229
}
230230
}
231231

0 commit comments

Comments
 (0)