Skip to content

Commit 1403139

Browse files
committed
database_dump: Fix reference warning
1 parent 57cb36e commit 1403139

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/crates_io_database_dump/src/configuration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ impl VisibilityConfig {
5353
}
5454
let mut ready: VecDeque<&str> = num_deps
5555
.iter()
56-
.filter(|(_, &count)| count == 0)
56+
.filter(|&(_, &count)| count == 0)
5757
.map(|(&table, _)| table)
5858
.collect();
5959
let mut result = Vec::with_capacity(ready.len());

0 commit comments

Comments
 (0)