In test/perf/startup, gcc (Debian 14.2.0-3) seems to get confused about the size of the counters vector as the code was written. Rewrite the code to pass the same value (std::thread::hardware_concurrency(), but in a local) to both counters.resize() and the ParallelTest ctor.
In test/perf/startup, gcc (Debian 14.2.0-3) seems to get confused about the size of the counters vector as the code was written. Rewrite the code to pass the same value (
std::thread::hardware_concurrency()
, but in a local) to bothcounters.resize()
and theParallelTest
ctor.