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);
}
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};
bench.run([&] {
ProtectEvictionCandidatesByRatio(copies.at(i));