Skip to content

Commit 7264a84

Browse files
committed
clang-format
1 parent 15e6023 commit 7264a84

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

benchmarks/bench.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
#define MY_BENCHMARK_CAPTURE(func, T, test_case_name, ...) \
66
BENCHMARK_PRIVATE_DECLARE(func) \
77
= (::benchmark::internal::RegisterBenchmarkInternal( \
8-
std::unique_ptr<benchmark::internal::Benchmark>( \
9-
new ::benchmark::internal::FunctionBenchmark( \
10-
#func "/" #test_case_name "/" #T, \
11-
[](::benchmark::State &st) { \
12-
func<T>(st, __VA_ARGS__); \
13-
}))))
8+
std::unique_ptr<benchmark::internal::Benchmark>( \
9+
new ::benchmark::internal::FunctionBenchmark( \
10+
#func "/" #test_case_name "/" #T, \
11+
[](::benchmark::State &st) { \
12+
func<T>(st, __VA_ARGS__); \
13+
}))))
1414

1515
#define BENCH_SORT(func, type) \
1616
MY_BENCHMARK_CAPTURE(func, type, random_128, 128, std::string("random")); \

0 commit comments

Comments
 (0)