0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-05 14:06:27 -05:00

bench: fix 32-bit narrowing warning in bench/peer_eviction.cpp

This commit is contained in:
Jon Atack 2021-07-15 23:02:20 +02:00
parent a88fa1a555
commit e49d50cf40
No known key found for this signature in database
GPG key ID: 4F5721B3D0E3921D

View file

@ -27,7 +27,8 @@ static void EvictionProtectionCommon(
candidate_setup_fn(c); candidate_setup_fn(c);
} }
std::vector<Candidates> copies{bench.epochs() * bench.epochIterations(), candidates}; std::vector<Candidates> copies{
static_cast<size_t>(bench.epochs() * bench.epochIterations()), candidates};
size_t i{0}; size_t i{0};
bench.run([&] { bench.run([&] {
ProtectEvictionCandidatesByRatio(copies.at(i)); ProtectEvictionCandidatesByRatio(copies.at(i));