Skip to content

Commit 0954e54

Browse files
committed
shorten line length for tidy
1 parent 0a3a46d commit 0954e54

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/librustc_typeck/check/wfcheck.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,8 @@ impl<'a, 'gcx> CheckTypeWellFormedVisitor<'a, 'gcx> {
492492

493493
if fcx.infcx.can_eq(fcx.param_env, self_ty, potential_self_ty).is_ok() {
494494
autoderef.finalize();
495-
if let Some(mut err) = fcx.demand_eqtype_with_origin(&cause, self_ty, potential_self_ty) {
495+
if let Some(mut err) = fcx.demand_eqtype_with_origin(
496+
&cause, self_ty, potential_self_ty) {
496497
err.emit();
497498
}
498499
break

0 commit comments

Comments
 (0)