ktprime / emhash

Fast and memory efficient c++ flat hash map/set
MIT License
435 stars 30 forks source link

Hash set typedef missing EqT #4

Closed 2TAC closed 4 years ago

2TAC commented 4 years ago

The hash sets have a typedef missing EqT making them not work when created with a custom equal_to.

typedef HashSet<KeyT, HashT> htype;

should probably be

typedef HashSet<KeyT, HashT, EqT> htype;

ktprime commented 4 years ago

Thanks your feedback, I have fixed it now.