Skip to content

Commit d336f02

Browse files
committed
Preserve original formatting.
1 parent 175cfbf commit d336f02

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/libsyntax/parse/parser.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3167,10 +3167,7 @@ impl<'a> Parser<'a> {
31673167
attrs.extend(iattrs);
31683168

31693169
let hi = self.prev_span;
3170-
Ok(self.mk_expr(
3171-
span_lo.to(hi),
3172-
ExprKind::ForLoop(pat, expr, loop_block, opt_ident),
3173-
attrs))
3170+
Ok(self.mk_expr(span_lo.to(hi), ExprKind::ForLoop(pat, expr, loop_block, opt_ident), attrs))
31743171
}
31753172

31763173
/// Parse a 'while' or 'while let' expression ('while' token already eaten)

0 commit comments

Comments
 (0)