Skip to content

Commit cfe8da3

Browse files
committed
fix clippy::extra_unused_lifetimes
1 parent 39221e1 commit cfe8da3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/groupbylazy.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ trait KeyFunction<A> {
77
fn call_mut(&mut self, arg: A) -> Self::Key;
88
}
99

10-
impl<'a, A, K, F: ?Sized> KeyFunction<A> for F
10+
impl<A, K, F: ?Sized> KeyFunction<A> for F
1111
where F: FnMut(A) -> K
1212
{
1313
type Key = K;
@@ -37,7 +37,7 @@ impl ChunkIndex {
3737
}
3838
}
3939

40-
impl<'a, A> KeyFunction<A> for ChunkIndex {
40+
impl<A> KeyFunction<A> for ChunkIndex {
4141
type Key = usize;
4242
#[inline(always)]
4343
fn call_mut(&mut self, _arg: A) -> Self::Key {

0 commit comments

Comments
 (0)