Skip to content

Commit 0aad91b

Browse files
committed
Formatting.
1 parent d651fa7 commit 0aad91b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

compiler/rustc_expand/src/base.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,9 @@ impl SyntaxExtension {
782782
}
783783
}
784784

785-
let builtin_name = sess.find_by_name(attrs, sym::rustc_builtin_macro).map(|a| a.value_str().unwrap_or(name));
785+
let builtin_name = sess
786+
.find_by_name(attrs, sym::rustc_builtin_macro)
787+
.map(|a| a.value_str().unwrap_or(name));
786788
let (stability, const_stability) = attr::find_stability(&sess, attrs, span);
787789
if const_stability.is_some() {
788790
sess.parse_sess

0 commit comments

Comments
 (0)