mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 18:09:47 +01:00
bench: fix 32-bit narrowing warning in bench/peer_eviction.cpp
This commit is contained in:
parent
a88fa1a555
commit
e49d50cf40
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user