fix clippy

This commit is contained in:
ManyTheFish 2025-02-17 16:41:34 +01:00
parent 9505f15c85
commit 57b26f8441
2 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,7 @@ impl DatabaseStats {
///
/// This function is used to update the stats of the database when some keys are modified.
/// It is more efficient than the `new` function because it does not iterate over the whole database but only the modified keys comparing the before and after states.
pub(crate) fn recompute<'a, I, K>(
pub(crate) fn recompute<I, K>(
mut stats: Self,
database: Database<Bytes, Bytes>,
before_rtxn: &RoTxn<'_>,

View File

@ -113,6 +113,7 @@ where
Ok(())
}
#[allow(clippy::too_many_arguments)]
pub(super) fn update_index(
index: &Index,
wtxn: &mut RwTxn<'_>,