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.52k stars 146 forks source link

gnu c < 4 doesn't support C++14, thus redundant #28

Closed wyattoday closed 5 years ago

wyattoday commented 5 years ago

Robin-hood requires C++14 to even compile, thus checks for ancient versions of GNUC are redundant and just add noise.

martinus commented 5 years ago

Looks good, thanks for cleaning up :)