Index: include/memory =================================================================== --- include/memory +++ include/memory @@ -3192,6 +3192,9 @@ }; // murmur2 +#ifdef __clang__ +__attribute((no_sanitize("unsigned integer"))) +#endif template _Size __murmur2_or_cityhash<_Size, 32>::operator()(const void* __key, _Size __len) @@ -3342,6 +3345,9 @@ }; // cityhash64 +#ifdef __clang__ +__attribute((no_sanitize("unsigned integer"))) +#endif template _Size __murmur2_or_cityhash<_Size, 64>::operator()(const void* __key, _Size __len)