Skip to content

Commit

Permalink
Fix Clippy warnings
Browse files Browse the repository at this point in the history
clippy 0.1.75 (782883f6097 2023-11-12)
  • Loading branch information
tatsuya6502 committed Nov 18, 2023
1 parent ce70442 commit 9ebe99d
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 9ebe99d

Please sign in to comment.