diff options
| author | carbotaniuman <41451839+carbotaniuman@users.noreply.github.com> | 2024-05-27 11:45:32 -0500 | 
|---|---|---|
| committer | carbotaniuman <41451839+carbotaniuman@users.noreply.github.com> | 2024-06-06 20:27:25 -0500 | 
| commit | 15f8ffe371debffe922d8dde74918a2d14acc1fd (patch) | |
| tree | b23146031cffe467d97376f7db929a356ea1b4c6 /compiler/rustc_expand/src | |
| parent | 8aa2553b509b8ea033560aedebe0df7c1d8ca42c (diff) | |
| download | rust-15f8ffe371debffe922d8dde74918a2d14acc1fd.tar.gz rust-15f8ffe371debffe922d8dde74918a2d14acc1fd.zip  | |
Fix formatting
Diffstat (limited to 'compiler/rustc_expand/src')
| -rw-r--r-- | compiler/rustc_expand/src/build.rs | 18 | 
1 files changed, 16 insertions, 2 deletions
diff --git a/compiler/rustc_expand/src/build.rs b/compiler/rustc_expand/src/build.rs index e513e61f4d1..37dfd830512 100644 --- a/compiler/rustc_expand/src/build.rs +++ b/compiler/rustc_expand/src/build.rs @@ -674,12 +674,26 @@ impl<'a> ExtCtxt<'a> { // Note: `span` is used for both the identifier and the value. pub fn attr_name_value_str(&self, name: Symbol, val: Symbol, span: Span) -> ast::Attribute { let g = &self.sess.psess.attr_id_generator; - attr::mk_attr_name_value_str(g, ast::AttrStyle::Outer, ast::Safety::Default, name, val, span) + attr::mk_attr_name_value_str( + g, + ast::AttrStyle::Outer, + ast::Safety::Default, + name, + val, + span, + ) } // Builds `#[outer(inner)]`. pub fn attr_nested_word(&self, outer: Symbol, inner: Symbol, span: Span) -> ast::Attribute { let g = &self.sess.psess.attr_id_generator; - attr::mk_attr_nested_word(g, ast::AttrStyle::Outer, ast::Safety::Default, outer, inner, span) + attr::mk_attr_nested_word( + g, + ast::AttrStyle::Outer, + ast::Safety::Default, + outer, + inner, + span, + ) } }  | 
