clippy: remove needless lifetimes

This commit is contained in:
Louis Dureuil
2023-01-30 17:18:02 +01:00
parent 89675e5f15
commit 3296cf7ae6
7 changed files with 38 additions and 38 deletions

View File

@@ -574,9 +574,9 @@ fn remove_from_word_docids(
Ok(())
}
fn remove_docids_from_field_id_docid_facet_value<'i, 'a>(
index: &'i Index,
wtxn: &'a mut heed::RwTxn,
fn remove_docids_from_field_id_docid_facet_value(
index: &'_ Index,
wtxn: &'_ mut heed::RwTxn,
facet_type: FacetType,
field_id: FieldId,
to_remove: &RoaringBitmap,