mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
Pacify rustfmt.
This commit is contained in:
parent
4434bfac01
commit
0373b007da
1 changed files with 2 additions and 3 deletions
|
@ -210,9 +210,8 @@ where
|
|||
F: FnMut(&ast::Block, Option<&ast::Label>),
|
||||
{
|
||||
if let ast::ExprKind::While(_, loop_block, label)
|
||||
| ast::ExprKind::ForLoop(_, _, loop_block, label)
|
||||
| ast::ExprKind::Loop(loop_block, label)
|
||||
= &expr.node
|
||||
| ast::ExprKind::ForLoop(_, _, loop_block, label)
|
||||
| ast::ExprKind::Loop(loop_block, label) = &expr.node
|
||||
{
|
||||
func(loop_block, label.as_ref());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue