Stub out murmur hash

This commit is contained in:
Justin Ethier 2021-01-09 18:25:07 -08:00
parent 55e3000084
commit 9b784353b0
2 changed files with 5 additions and 1 deletions

View file

@ -373,4 +373,3 @@ int simple_hashset_is_member(simple_hashset_t set, symbol_type* key)
}

View file

@ -70,6 +70,11 @@ struct ck_malloc {
*/
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