mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-25 13:05:05 +02:00
Stub out murmur hash
This commit is contained in:
parent
55e3000084
commit
9b784353b0
2 changed files with 5 additions and 1 deletions
|
@ -373,4 +373,3 @@ int simple_hashset_is_member(simple_hashset_t set, symbol_type* key)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -70,6 +70,11 @@ struct ck_malloc {
|
||||||
*/
|
*/
|
||||||
int simple_hashset_is_member(simple_hashset_t set, symbol_type* key);
|
int simple_hashset_is_member(simple_hashset_t set, symbol_type* key);
|
||||||
|
|
||||||
|
static inline uint64_t MurmurHash64A(const void *key, int len, uint64_t seed)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// CK Hashset section
|
// CK Hashset section
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue