Skip to content

Commit 9711e9d

Browse files
authored
Rollup merge of rust-lang#95670 - TaKO8Ki:remove-unused-function-parameters, r=davidtwco
Refactor: remove unused function parameters
2 parents 0826ef7 + 9759804 commit 9711e9d

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs

+3-12
Original file line numberDiff line numberDiff line change
@@ -772,14 +772,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
772772
Some((issued_span, span)),
773773
);
774774

775-
self.suggest_using_local_if_applicable(
776-
&mut err,
777-
location,
778-
(place, span),
779-
gen_borrow_kind,
780-
issued_borrow,
781-
explanation,
782-
);
775+
self.suggest_using_local_if_applicable(&mut err, location, issued_borrow, explanation);
783776

784777
err
785778
}
@@ -789,8 +782,6 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
789782
&self,
790783
err: &mut Diagnostic,
791784
location: Location,
792-
(place, span): (Place<'tcx>, Span),
793-
gen_borrow_kind: BorrowKind,
794785
issued_borrow: &BorrowData<'tcx>,
795786
explanation: BorrowExplanation,
796787
) {
@@ -822,7 +813,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
822813
return;
823814
};
824815
let inner_param_uses = find_all_local_uses::find(self.body, inner_param.local);
825-
let Some((inner_call_loc,inner_call_term)) = inner_param_uses.into_iter().find_map(|loc| {
816+
let Some((inner_call_loc, inner_call_term)) = inner_param_uses.into_iter().find_map(|loc| {
826817
let Either::Right(term) = self.body.stmt_at(loc) else {
827818
debug!("{:?} is a statement, so it can't be a call", loc);
828819
return None;
@@ -833,7 +824,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
833824
};
834825
debug!("checking call args for uses of inner_param: {:?}", args);
835826
if args.contains(&Operand::Move(inner_param)) {
836-
Some((loc,term))
827+
Some((loc, term))
837828
} else {
838829
None
839830
}

0 commit comments

Comments
 (0)