Skip to content

Commit c94d229

Browse files
Rollup merge of #122969 - cuviper:borrowck-rposition, r=matthewjasper
Simplify an iterator search in borrowck diag Rather than `.into_iter().rev().find_position(...)`, this case can simply call `.iter().rposition(...)`.
2 parents 992aa1e + 66f1e14 commit c94d229

File tree

1 file changed

+9
-11
lines changed
  • compiler/rustc_borrowck/src/diagnostics

1 file changed

+9
-11
lines changed

compiler/rustc_borrowck/src/diagnostics/mod.rs

+9-11
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use crate::session_diagnostics::{
44
CaptureArgLabel, CaptureReasonLabel, CaptureReasonNote, CaptureReasonSuggest, CaptureVarCause,
55
CaptureVarKind, CaptureVarPathUseCause, OnClosureNote,
66
};
7-
use itertools::Itertools;
87
use rustc_errors::{Applicability, Diag};
98
use rustc_hir as hir;
109
use rustc_hir::def::{CtorKind, Namespace};
@@ -226,16 +225,15 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
226225
}
227226
} else {
228227
if autoderef_index.is_none() {
229-
autoderef_index =
230-
match place.projection.into_iter().rev().find_position(|elem| {
231-
!matches!(
232-
elem,
233-
ProjectionElem::Deref | ProjectionElem::Downcast(..)
234-
)
235-
}) {
236-
Some((index, _)) => Some(place.projection.len() - index),
237-
None => Some(0),
238-
};
228+
autoderef_index = match place.projection.iter().rposition(|elem| {
229+
!matches!(
230+
elem,
231+
ProjectionElem::Deref | ProjectionElem::Downcast(..)
232+
)
233+
}) {
234+
Some(index) => Some(index + 1),
235+
None => Some(0),
236+
};
239237
}
240238
if index >= autoderef_index.unwrap() {
241239
buf.insert(0, '*');

0 commit comments

Comments
 (0)