Browse Source

hashset.hpp

hash
Antonio SJ Musumeci 3 weeks ago
parent
commit
d7fc056fc6
  1. 2
      src/hashset.hpp

2
src/hashset.hpp

@ -40,7 +40,7 @@ bool
vt_cmpr_uint64(const uint64_t key_1, vt_cmpr_uint64(const uint64_t key_1,
const uint64_t key_2) const uint64_t key_2)
{ {
return (strcmp(key_1,key_2) == 0);
return (key_1 == key_2);
} }
#define NAME str_set #define NAME str_set

Loading…
Cancel
Save