diff options
| -rw-r--r-- | compiler/rustc_ast/src/visit.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/rustc_ast/src/visit.rs b/compiler/rustc_ast/src/visit.rs index ddcb0cef3d1..a4105009d86 100644 --- a/compiler/rustc_ast/src/visit.rs +++ b/compiler/rustc_ast/src/visit.rs @@ -820,10 +820,7 @@ pub fn walk_fn_ret_ty<'a, V: Visitor<'a>>(visitor: &mut V, ret_ty: &'a FnRetTy) V::Result::output() } -pub fn walk_fn_header<'a, V: Visitor<'a>>( - visitor: &mut V, - fn_header: &'a FnHeader -) -> V::Result { +pub fn walk_fn_header<'a, V: Visitor<'a>>(visitor: &mut V, fn_header: &'a FnHeader) -> V::Result { let FnHeader { safety: _, coroutine_kind, constness: _, ext: _ } = fn_header; visit_opt!(visitor, visit_coroutine_kind, coroutine_kind.as_ref()); V::Result::output() |
