From 4f0e3202361fb98f881bffe8b96154884c582a1a Mon Sep 17 00:00:00 2001 From: gabime Date: Sat, 26 Jun 2021 17:52:55 +0300 Subject: [PATCH] Fixed format string in bench --- bench/bench.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/bench.cpp b/bench/bench.cpp index 6ecd155b..5a4fc39b 100644 --- a/bench/bench.cpp +++ b/bench/bench.cpp @@ -128,7 +128,7 @@ int main(int argc, char *argv[]) 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);