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
Rename CMake project name from tsl_robin_map to tsl-robin-map for coherence with the convention used by most package managers. The find_package(tsl-robin-map) command must now be used instead of the find_package(tsl_robin_map).
Set bucket count for default constructed map/set to 0 to avoid any allocation.
On Windows, add tsl-robin-map.natvis to the installed files.
Fix CMake >= 3.13 warning on Policy CMP0076 and add quotes to paths.
Remove cxx_std_11 from target_compile_features to avoid a warning with older versions of CMake that don't support it. The warning was given even if the target_compile_features was surrounded in a if(${CMAKE_VERSION} VERSION_GREATER "3.7").
Change error message when max_bucket_count is reached. It's the maximum bucket count that has been reached and not the size.