Browse Source

hashset.hpp

hash
Antonio SJ Musumeci 3 weeks ago
parent
commit
0295bffcfc
  1. 1
      src/hashset.hpp

1
src/hashset.hpp

@ -36,6 +36,7 @@ uint64_t
vt_hash_const_string(const char *key_)
{
uint64_t hash = 0xcbf29ce484222325ull;
while( *key )
hash = ( (unsigned char)*key++ ^ hash ) * 0x100000001b3ull;

Loading…
Cancel
Save