Skip to content

Commit cf11e47

Browse files
authored
#![deny(clippy::missing_safety_doc)]: Add (already fixed) (#1306)
* Fixes `#![deny(clippy::missing_safety_doc)]` of #1270. This already passes without errors, unlike `#![deny(clippy::undocumented_unsafe_blocks)]` in #1305.
2 parents c34d308 + 35e9c71 commit cf11e47

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#![deny(unsafe_op_in_unsafe_fn)]
88
#![allow(clippy::all)]
99
#![deny(clippy::undocumented_unsafe_blocks)]
10+
#![deny(clippy::missing_safety_doc)]
1011

1112
#[cfg(not(any(feature = "bitdepth_8", feature = "bitdepth_16")))]
1213
compile_error!("No bitdepths enabled. Enable one or more of the following features: `bitdepth_8`, `bitdepth_16`");

0 commit comments

Comments
 (0)