Skip to content

Commit 84dadb6

Browse files
committed
Pacify tidy
1 parent e28e487 commit 84dadb6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libsyntax/ext/base.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,8 @@ pub type MacroExpanderFn =
255255
-> Box<dyn MacResult+'cx>;
256256

257257
impl<F> TTMacroExpander for F
258-
where F: for<'cx> Fn(&'cx mut ExtCtxt, Span, &[tokenstream::TokenTree]) -> Box<dyn MacResult+'cx>
258+
where F: for<'cx> Fn(&'cx mut ExtCtxt, Span, &[tokenstream::TokenTree])
259+
-> Box<dyn MacResult+'cx>
259260
{
260261
fn expand<'cx>(&self, ecx: &'cx mut ExtCtxt, span: Span, input: TokenStream)
261262
-> Box<dyn MacResult+'cx> {

0 commit comments

Comments
 (0)