You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
Does not compile on linux, I assume because the necessary header files are not included.
src/robin_hood.h:2122:60: error: ‘numeric_limits’ is not a member of ‘std’
2122 | if (ROBIN_HOOD_LIKELY(maxElements <= (std::numeric_limits<size_t>::max)() / 100)) {
I've added :
#include <limits>
which resolves the above error.
The text was updated successfully, but these errors were encountered:
Does not compile on linux, I assume because the necessary header files are not included.
I've added :
which resolves the above error.
The text was updated successfully, but these errors were encountered: