Fixed format string in bench

pull/1981/head
gabime 4 years ago
parent 68aed6a5eb
commit 4f0e320236

@ -128,7 +128,7 @@ int main(int argc, char *argv[])
if (threads > max_threads) if (threads > max_threads)
{ {
throw std::runtime_error(fmt::format("Number of threads exceeds maximum({}})", max_threads)); throw std::runtime_error(fmt::format("Number of threads exceeds maximum({})", max_threads));
} }
bench_single_threaded(iters); bench_single_threaded(iters);

Loading…
Cancel
Save