martinus / robin-hood-hashing

Fast & memory efficient hashtable based on robin hood hashing for C++11/14/17/20
https://gitter.im/martinus/robin-hood-hashing
MIT License
1.5k stars 142 forks source link

Fix is_transparent typedef detection #78

Closed k0zmo closed 4 years ago

k0zmo commented 4 years ago

This fixes is_transparent typedef detection mechanism. Currently, it requires is_transparent to be the typedef of void which is too strict - VC++ defines its standard transparent operator functors with is_transparent being a typedef of int.

martinus commented 4 years ago

Thanks!