Skip to content

Commit

Permalink
Fixed error.
Browse files Browse the repository at this point in the history
  • Loading branch information
xacrimon committed Jan 30, 2020
1 parent 76de37b commit 804cf2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl<K: Eq + Hash + Clone, V: Clone, S: Clone> Clone for DashMap<K, V, S> {
impl<K, V, S> Default for DashMap<K, V, S>
where
K: Eq + Hash,
S: Default,
S: Default + BuildHasher + Clone,
{
fn default() -> Self {
Self::with_hasher(Default::default())
Expand Down

0 comments on commit 804cf2b

Please sign in to comment.