Skip to content

Commit 4a70af8

Browse files
committed
rust: enable clippy::unnecessary_safety_doc lint
In Rust 1.67.0, Clippy added the `unnecessary_safety_doc` lint [1], which is similar to `unnecessary_safety_comment`, but for `# Safety` sections, i.e. safety preconditions in the documentation. This is something that should not happen with our coding guidelines in mind. Thus enable the lint to have it machine-checked. Link: https://rust-lang.github.io/rust-clippy/master/index.html#/unnecessary_safety_doc [1] Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
1 parent bbebb75 commit 4a70af8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,7 @@ export rust_common_flags := --edition=2021 \
458458
-Wclippy::no_mangle_with_rust_abi \
459459
-Wclippy::undocumented_unsafe_blocks \
460460
-Wclippy::unnecessary_safety_comment \
461+
-Wclippy::unnecessary_safety_doc \
461462
-Wrustdoc::missing_crate_level_docs
462463

463464
KBUILD_HOSTCFLAGS := $(KBUILD_USERHOSTCFLAGS) $(HOST_LFS_CFLAGS) \

0 commit comments

Comments
 (0)