Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 44233b2

Browse files
committed
fix deref again
1 parent 90ef6f4 commit 44233b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ where
243243
{
244244
map_a
245245
.iter()
246-
.filter(|(k, v)| contained_and_not_updated(&**k, &**v, map_b))
246+
.filter(|(k, v)| contained_and_not_updated(*k, *v, map_b))
247247
.map(|(k, v)| (k.clone(), v.clone()))
248248
.collect()
249249
}
@@ -258,7 +258,7 @@ where
258258
{
259259
map_a
260260
.iter()
261-
.filter(|(k, v)| contained_and_not_updated(&**k, &**v, map_b))
261+
.filter(|(k, v)| contained_and_not_updated(*k, *v, map_b))
262262
.map(|x| x.0)
263263
}
264264

0 commit comments

Comments
 (0)