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
error: 3rd/parallel-hashmap/parallel_hashmap/phmap_utils.h:324:16: error: right shift count >= width of type [-Werror=shift-count-overflow]
324 | k ^= k >> r;
| ~~^~~~
the type of k is size_t , r = 47 , in 32-bit linux k >> r , overflow , how to fix it !!
The text was updated successfully, but these errors were encountered:
error: 3rd/parallel-hashmap/parallel_hashmap/phmap_utils.h:324:16: error: right shift count >= width of type [-Werror=shift-count-overflow]
324 | k ^= k >> r;
| ~~^~~~
the type of k is size_t , r = 47 , in 32-bit linux k >> r , overflow , how to fix it !!
The text was updated successfully, but these errors were encountered: