Skip to content

Commit a6b41aa

Browse files
committed
fmt
1 parent 241a654 commit a6b41aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

compiler/rustc_hir_typeck/src/upvar.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1482,7 +1482,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
14821482
hir::CaptureBy::Value { .. } if !place.deref_tys().any(Ty::is_ref) => {
14831483
ty::UpvarCapture::ByValue
14841484
}
1485-
hir::CaptureBy::Value { .. } | hir::CaptureBy::Ref => ty::UpvarCapture::ByRef(ty::ImmBorrow),
1485+
hir::CaptureBy::Value { .. } | hir::CaptureBy::Ref => {
1486+
ty::UpvarCapture::ByRef(ty::ImmBorrow)
1487+
}
14861488
}
14871489
}
14881490

compiler/rustc_parse/src/parser/expr.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -2310,9 +2310,7 @@ impl<'a> Parser<'a> {
23102310
Err(errors::AsyncMoveOrderIncorrect { span: move_async_span }
23112311
.into_diagnostic(&self.sess.span_diagnostic))
23122312
} else {
2313-
Ok(CaptureBy::Value {
2314-
move_kw: move_kw_span,
2315-
})
2313+
Ok(CaptureBy::Value { move_kw: move_kw_span })
23162314
}
23172315
} else {
23182316
Ok(CaptureBy::Ref)

0 commit comments

Comments
 (0)