X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libhashkit%2Falgorithm.cc;h=37d1cb4347886f8b1ef3f086106aa64e879f81cc;hb=b446f6c049da5f9c2516a19024c97a9951168c6a;hp=de00081da56c648246fdb2a7f99a72ef93b6a514;hpb=ae6bc7501efd5aeaaee92dabe2da0ec2d1625c5b;p=m6w6%2Flibmemcached diff --git a/libhashkit/algorithm.cc b/libhashkit/algorithm.cc index de00081d..37d1cb43 100644 --- a/libhashkit/algorithm.cc +++ b/libhashkit/algorithm.cc @@ -38,19 +38,15 @@ uint32_t libhashkit_crc32(const char *key, size_t key_length) return hashkit_crc32(key, key_length, NULL); } -#ifdef HAVE_HSIEH_HASH uint32_t libhashkit_hsieh(const char *key, size_t key_length) { return hashkit_hsieh(key, key_length, NULL); } -#endif -#ifdef HAVE_MURMUR_HASH uint32_t libhashkit_murmur(const char *key, size_t key_length) { return hashkit_murmur(key, key_length, NULL); } -#endif uint32_t libhashkit_jenkins(const char *key, size_t key_length) {