Closed 2TAC closed 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;
Thanks your feedback, I have fixed it now.
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;