Skip to content

Commit d9bc1fc

Browse files
committed
We don't need these.
1 parent 5045a24 commit d9bc1fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rayon-core/src/latch.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,12 +194,12 @@ impl<'a, L: Latch> Latch for TickleLatch<'a, L> {
194194

195195
impl<'a, L> LatchProbe for &'a L where L: LatchProbe {
196196
fn probe(&self) -> bool {
197-
L::probe(&self)
197+
L::probe(self)
198198
}
199199
}
200200

201201
impl<'a, L> Latch for &'a L where L: Latch {
202202
fn set(&self) {
203-
L::set(&self);
203+
L::set(self);
204204
}
205205
}

0 commit comments

Comments
 (0)