Skip to content

Commit

Permalink
Auto merge of #11127 - matklad:unused-mut, r=Eh2406
Browse files Browse the repository at this point in the history
minor: remove unused mut
  • Loading branch information
bors committed Sep 22, 2022
2 parents 7c8a5a6 + 73c79c7 commit 8882d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cargo/core/resolver/dep_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl<'a> RegistryQueryer<'a> {
self.registry_cache.insert(dep.clone(), Poll::Pending);
return Poll::Pending;
}
for summary in ret.iter_mut() {
for summary in ret.iter() {
let mut potential_matches = self
.replacements
.iter()
Expand Down

0 comments on commit 8882d99

Please sign in to comment.