Browse Source

hashset.hpp

hash
Antonio SJ Musumeci 3 weeks ago
parent
commit
baaa84bbd2
  1. 9
      src/hashset.hpp

9
src/hashset.hpp

@ -29,14 +29,9 @@
static
inline
uint64_t
vt_hash_const_string(const char *key_)
vt_hash_uint64(const uint64_t hash_)
{
uint64_t hash = 0xcbf29ce484222325ull;
while(*key_)
hash = (((const unsigned char)*key_++ ^ hash) * 0x100000001b3ull);
return hash;
return hash_;
}
static

Loading…
Cancel
Save