From 9b784353b01b3042dc77895fc91cf108162a980d Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Sat, 9 Jan 2021 18:25:07 -0800 Subject: [PATCH] Stub out murmur hash --- ck-polyfill.c | 1 - ck-polyfill.h | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ck-polyfill.c b/ck-polyfill.c index 9d961595..7c82a470 100644 --- a/ck-polyfill.c +++ b/ck-polyfill.c @@ -373,4 +373,3 @@ int simple_hashset_is_member(simple_hashset_t set, symbol_type* key) } - diff --git a/ck-polyfill.h b/ck-polyfill.h index d0b52eb6..df875f0b 100644 --- a/ck-polyfill.h +++ b/ck-polyfill.h @@ -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