Commit 4f0e3202 authored by gabime's avatar gabime

Fixed format string in bench

parent 68aed6a5
...@@ -128,7 +128,7 @@ int main(int argc, char *argv[]) ...@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment