Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Jan 24, 2025
1 parent 3629b60 commit 7d053b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions turbopack/crates/turbo-tasks-backend/src/backend/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -417,10 +417,10 @@ macro_rules! generate_inner_storage {
self.dynamic.get_mut_or_insert_with(key, f)
}

pub fn iter<'l>(
&'l self,
pub fn iter(
&self,
ty: CachedDataItemType,
) -> impl Iterator<Item = (CachedDataItemKey, CachedDataItemValueRef<'l>)>
) -> impl Iterator<Item = (CachedDataItemKey, CachedDataItemValueRef<'_>)>
{
use crate::data_storage::Storage;
$crate::generate_inner_storage_internal!(iter: self, ty: $($config)*);
Expand Down

0 comments on commit 7d053b1

Please sign in to comment.