From d3c37344f09592d16a36e967fb25252f1f582bb8 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 29 Nov 2021 17:37:26 +0200 Subject: [PATCH] Vary top 24 bits of shifted indices instead of top 32 bits --- benchmark/uint64.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/uint64.cpp b/benchmark/uint64.cpp index 5432b7b2..2b677280 100644 --- a/benchmark/uint64.cpp +++ b/benchmark/uint64.cpp @@ -59,7 +59,7 @@ static void init_indices() for( unsigned i = 1; i <= N*2; ++i ) { - indices3.push_back( (std::uint64_t)i << 32 ); + indices3.push_back( (std::uint64_t)i << 40 ); } }