Since #20233 compiling with clang 10.0 fails:
0bench/addrman.cpp:113:32: error: non-constant-expression cannot be narrowed from type 'unsigned long long' to 'size_t' (aka 'unsigned int') in initializer list [-Wc++11-narrowing]
1 const size_t addrman_count{bench.epochs() * bench.epochIterations()};
2 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3bench/addrman.cpp:113:32: note: insert an explicit cast to silence this issue
4 const size_t addrman_count{bench.epochs() * bench.epochIterations()};
5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6 static_cast<size_t>( )
71 error generated.
8make[2]: *** [Makefile:12508: bench/bench_bitcoin-addrman.o] Error 1