Skip to content

Commit

Permalink
Merge pull request #347 from moka-rs/fix-ci-2023-11-18-v012
Browse files Browse the repository at this point in the history
Fix Clippy v0.1.75 warnings (Moka v0.12.x)
  • Loading branch information
tatsuya6502 authored Nov 18, 2023
2 parents ce70442 + 9ebe99d commit 5ee0f6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/future/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ where
eviction_listener: None,
expiration_policy: ExpirationPolicy::default(),
invalidator_enabled: false,
cache_type: PhantomData::default(),
cache_type: PhantomData,
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/sync/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ where
eviction_listener: None,
expiration_policy: ExpirationPolicy::default(),
invalidator_enabled: false,
cache_type: PhantomData::default(),
cache_type: PhantomData,
}
}
}
Expand Down

0 comments on commit 5ee0f6a

Please sign in to comment.