Merge pull request #62478 from rschu1ze/fix-clang-tidy-build

Fix clang-tidy build
This commit is contained in:
Robert Schulze 2024-04-10 10:04:48 +00:00 committed by GitHub
commit 31fe20d7d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -205,7 +205,7 @@ static void aggregate4(Map & local_map, MapTwoLevel & global_map, Mutex * mutexe
else
{
size_t hash_value = global_map.hash(*it);
size_t bucket = global_map.getBucketFromHash(hash_value);
size_t bucket = MapTwoLevel::getBucketFromHash(hash_value);
if (mutexes[bucket].try_lock())
{