Browse Source

hashset.hpp

hash
Antonio SJ Musumeci 2 weeks ago
parent
commit
d33815a815
  1. 8
      src/hashset.hpp

8
src/hashset.hpp

@ -29,7 +29,7 @@
static static
inline inline
uint64_t uint64_t
vt_hash_uint64(const uint64_t hash_)
vt_hash_u64(const uint64_t hash_)
{ {
return hash_; return hash_;
} }
@ -37,7 +37,7 @@ vt_hash_uint64(const uint64_t hash_)
static static
inline inline
bool bool
vt_cmpr_uint64(const uint64_t key_1,
vt_cmpr_u64(const uint64_t key_1,
const uint64_t key_2) const uint64_t key_2)
{ {
return (key_1 == key_2); return (key_1 == key_2);
@ -45,8 +45,8 @@ vt_cmpr_uint64(const uint64_t key_1,
#define NAME u64_set #define NAME u64_set
#define KEY_TY uint64_t #define KEY_TY uint64_t
#define HASH_FN vt_hash_const_string
#define CMPR_FN vt_cmpr_const_string
#define HASH_FN vt_hash_u64
#define CMPR_FN vt_cmpr_u64
#include "verstable.h" #include "verstable.h"
KHASH_SET_INIT_INT64(hashset); KHASH_SET_INIT_INT64(hashset);

Loading…
Cancel
Save