Skip to content

Commit 1c5c054

Browse files
committed
Rename for clarity
1 parent 06f0ab0 commit 1c5c054

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clippy_lints/src/redundant_clone.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ impl<'a, 'tcx> PossibleBorrowerVisitor<'a, 'tcx> {
452452
self,
453453
cx: &LateContext<'a, 'tcx>,
454454
maybe_live: DataflowResults<'tcx, MaybeStorageLive<'a, 'tcx>>,
455-
) -> PossibleBorrower<'a, 'tcx> {
455+
) -> PossibleBorrowerMap<'a, 'tcx> {
456456
let mut map = FxHashMap::default();
457457
for row in (1..self.body.local_decls.len()).map(mir::Local::from_usize) {
458458
if is_copy(cx, self.body.local_decls[row].ty) {
@@ -475,7 +475,7 @@ impl<'a, 'tcx> PossibleBorrowerVisitor<'a, 'tcx> {
475475
}
476476

477477
let bs = BitSet::new_empty(self.body.local_decls.len());
478-
PossibleBorrower {
478+
PossibleBorrowerMap {
479479
map,
480480
maybe_live: DataflowResultsCursor::new(maybe_live, self.body),
481481
bitset: (bs.clone(), bs),
@@ -557,15 +557,15 @@ fn rvalue_locals(rvalue: &mir::Rvalue<'_>, mut visit: impl FnMut(mir::Local)) {
557557
}
558558

559559
/// Result of `PossibleBorrowerVisitor`.
560-
struct PossibleBorrower<'a, 'tcx> {
560+
struct PossibleBorrowerMap<'a, 'tcx> {
561561
/// Mapping `Local -> its possible borrowers`
562562
map: FxHashMap<mir::Local, HybridBitSet<mir::Local>>,
563563
maybe_live: DataflowResultsCursor<'a, 'tcx, MaybeStorageLive<'a, 'tcx>>,
564564
// Caches to avoid allocation of `BitSet` on every query
565565
bitset: (BitSet<mir::Local>, BitSet<mir::Local>),
566566
}
567567

568-
impl PossibleBorrower<'_, '_> {
568+
impl PossibleBorrowerMap<'_, '_> {
569569
/// Returns true if the set of borrowers of `borrowed` living at `at` matches with `borrowers`.
570570
fn only_borrowers(&mut self, borrowers: &[mir::Local], borrowed: mir::Local, at: mir::Location) -> bool {
571571
self.maybe_live.seek(at);

0 commit comments

Comments
 (0)