Skip to content

Commit c1ea878

Browse files
committed
Auto merge of #124482 - spastorino:unsafe-extern-blocks, r=oli-obk
Unsafe extern blocks This implements RFC 3484. Tracking issue #123743 and RFC rust-lang/rfcs#3484 This is better reviewed commit by commit.
2 parents ecb2dd1 + 6478d9e commit c1ea878

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/utils.rs

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ pub(crate) fn format_defaultness(defaultness: ast::Defaultness) -> &'static str
111111
pub(crate) fn format_safety(unsafety: ast::Safety) -> &'static str {
112112
match unsafety {
113113
ast::Safety::Unsafe(..) => "unsafe ",
114+
ast::Safety::Safe(..) => "safe ",
114115
ast::Safety::Default => "",
115116
}
116117
}

0 commit comments

Comments
 (0)