Skip to content

Commit e5fd518

Browse files
committed
rust: sync: implement Default for LockClassKey
In Rust 1.78.0, Clippy suggests to implement `Default` even when `new()` is `const`, since `Default::default()` may call `const` functions even if it is not `const` itself [1]: error: you should consider adding a `Default` implementation for `LockClassKey` --> rust/kernel/sync.rs:31:5 | 31 | / pub const fn new() -> Self { 32 | | Self(Opaque::uninit()) 33 | | } | |_____^ Thus implement it. Link: rust-lang/rust-clippy#10903 [1] Signed-off-by: Miguel Ojeda <[email protected]>
1 parent b9b379f commit e5fd518

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

rust/kernel/sync.rs

+6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ impl LockClassKey {
3737
}
3838
}
3939

40+
impl Default for LockClassKey {
41+
fn default() -> Self {
42+
Self::new()
43+
}
44+
}
45+
4046
/// Defines a new static lock class and returns a pointer to it.
4147
#[doc(hidden)]
4248
#[macro_export]

0 commit comments

Comments
 (0)