diff options
author | Marvin Borner | 2023-05-26 22:20:00 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-26 22:20:00 +0200 |
commit | e5c2e8978f3572b00585b53c1f3bf8ee75586439 (patch) | |
tree | d56d131f8a06bf97f4b39e32eb756587673e67ec /inc/hash.h | |
parent | d239d5da765ddc389195d7121d517e16c674f50e (diff) |
Switched to xxHash from murmur3
Diffstat (limited to 'inc/hash.h')
-rw-r--r-- | inc/hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,6 +9,6 @@ typedef uint64_t hash_t; -hash_t hash(const void *key, int len, uint64_t seed); +hash_t hash(const void *data, size_t len, uint64_t seed); #endif |