Skip to content

Commit 69fe16a

Browse files
authored
Rollup merge of rust-lang#74979 - maekawatoshiki:fix, r=Mark-Simulacrum
`#![deny(unsafe_op_in_unsafe_fn)]` in sys/hermit Partial fix of rust-lang#73904. This encloses ``unsafe`` operations in ``unsafe fn`` in ``sys/hermit``. Some unsafe blocks are not well documented because some system-based functions lack documents.
2 parents 8532e74 + 14158f5 commit 69fe16a

File tree

1 file changed

+2
-0
lines changed
  • library/std/src/sys/hermit

1 file changed

+2
-0
lines changed

library/std/src/sys/hermit/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
//! compiling for wasm. That way it's a compile time error for something that's
1414
//! guaranteed to be a runtime error!
1515
16+
#![allow(unsafe_op_in_unsafe_fn)]
17+
1618
use crate::intrinsics;
1719
use crate::os::raw::c_char;
1820

0 commit comments

Comments
 (0)