Skip to content

Commit

Permalink
fix incorrect api, #22
Browse files Browse the repository at this point in the history
  • Loading branch information
flier committed Apr 13, 2022
1 parent d2734ba commit 4b55606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fasthash/benches/hash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ fn bench_hash64(c: &mut Criterion) {
b.iter(|| murmur2::Hash64_x86::hash_with_seed(&DATA[..size], SEED));
})
.with_function("ahash::hash64", move |b, &&size| {
b.iter(|| ahash::hash_with_seed(&DATA[..size], (SEED as u64, SEED as u64, SEED as u64, SEED as u64)))
b.iter(|| ahash::hash64_with_seed(&DATA[..size], (SEED as u128, SEED as u128)))
})
.with_function("sea::hash64", move |b, &&size| {
b.iter(|| sea::hash64_with_seeds(&DATA[..size], SEED, SEED, SEED, SEED));
Expand Down

0 comments on commit 4b55606

Please sign in to comment.