We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 684596f commit b3dd56cCopy full SHA for b3dd56c
src/items.rs
@@ -1079,12 +1079,13 @@ fn rewrite_fn_base(context: &RewriteContext,
1079
let mut result = String::with_capacity(1024);
1080
// Vis unsafety abi.
1081
result.push_str(format_visibility(vis));
1082
- result.push_str(::utils::format_unsafety(unsafety));
1083
1084
if let ast::Constness::Const = constness {
1085
result.push_str("const ");
1086
}
1087
+ result.push_str(::utils::format_unsafety(unsafety));
1088
+
1089
if abi != abi::Rust {
1090
result.push_str(&::utils::format_abi(abi));
1091
0 commit comments