This commit is contained in:
PSeitz
2024-11-29 16:08:21 +08:00
committed by GitHub
parent 52d4e81e70
commit 4c52499622
16 changed files with 28 additions and 29 deletions

View File

@@ -161,7 +161,7 @@ where
_lifetime: std::marker::PhantomData<&'a ()>,
}
impl<'a, TSSTable> Streamer<'a, TSSTable, AlwaysMatch>
impl<TSSTable> Streamer<'_, TSSTable, AlwaysMatch>
where TSSTable: SSTable
{
pub fn empty() -> Self {
@@ -178,7 +178,7 @@ where TSSTable: SSTable
}
}
impl<'a, TSSTable, A> Streamer<'a, TSSTable, A>
impl<TSSTable, A> Streamer<'_, TSSTable, A>
where
A: Automaton,
A::State: Clone,