mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-31 03:47:16 +02:00
Vary top 24 bits of shifted indices instead of top 32 bits
This commit is contained in:
@ -59,7 +59,7 @@ static void init_indices()
|
|||||||
|
|
||||||
for( unsigned i = 1; i <= N*2; ++i )
|
for( unsigned i = 1; i <= N*2; ++i )
|
||||||
{
|
{
|
||||||
indices3.push_back( (std::uint64_t)i << 32 );
|
indices3.push_back( (std::uint64_t)i << 40 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user