From 1c12c92286375dd91e283a6b0cbfc32f67d045b3 Mon Sep 17 00:00:00 2001 From: Eric Holk Date: Mon, 28 Feb 2022 13:03:13 -0800 Subject: [PATCH] Fix formatting --- compiler/rustc_typeck/src/expr_use_visitor.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/compiler/rustc_typeck/src/expr_use_visitor.rs b/compiler/rustc_typeck/src/expr_use_visitor.rs index 9f4502709418..db1c80ae433b 100644 --- a/compiler/rustc_typeck/src/expr_use_visitor.rs +++ b/compiler/rustc_typeck/src/expr_use_visitor.rs @@ -49,11 +49,7 @@ pub trait Delegate<'tcx> { /// The path at `assignee_place` is being assigned to. /// `diag_expr_id` is the id used for diagnostics (see `consume` for more details). - fn mutate( - &mut self, - assignee_place: &PlaceWithHirId<'tcx>, - diag_expr_id: hir::HirId - ); + fn mutate(&mut self, assignee_place: &PlaceWithHirId<'tcx>, diag_expr_id: hir::HirId); /// The `place` should be a fake read because of specified `cause`. fn fake_read(&mut self, place: Place<'tcx>, cause: FakeReadCause, diag_expr_id: hir::HirId);