Skip to content

Commit be0f878

Browse files
authored
Unrolled build for rust-lang#127922
Rollup merge of rust-lang#127922 - spastorino:unsafe-extern-blocks-in-style-guide, r=compiler-errors Add unsafe to extern blocks in style guide This goes after this is merged: - rust-lang#127921 r? ``@traviscross`` Tracking: - rust-lang#123743
2 parents bf662eb + ebf46f7 commit be0f878

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/style-guide/src/items.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,8 @@ entries, format it across multiple lines as with a type alias.
449449
## extern items
450450

451451
When writing extern items (such as `extern "C" fn`), always specify the ABI.
452-
For example, write `extern "C" fn foo ...`, not `extern fn foo ...`, or
453-
`extern "C" { ... }`.
452+
For example, write `extern "C" fn foo ...` or `unsafe extern "C" { ...}`
453+
and avoid `extern fn foo ...` and `unsafe extern { ... }`.
454454

455455
## Imports (`use` statements)
456456

0 commit comments

Comments
 (0)