Commit 5b2c0866 by Louis Dionne Committed by Eric

Enforce using a semicolon after BENCHMARK_MAIN to remove compiler warnings (#495)

parent 0bbaeeaf
......@@ -1146,7 +1146,8 @@ class Fixture : public internal::Benchmark {
::benchmark::Initialize(&argc, argv); \
if (::benchmark::ReportUnrecognizedArguments(argc, argv)) return 1; \
::benchmark::RunSpecifiedBenchmarks(); \
}
} \
int main(int, char**)
// ------------------------------------------------------
......
......@@ -115,4 +115,4 @@ void BM_RangedFor(benchmark::State& state) {
}
BENCHMARK(BM_RangedFor);
BENCHMARK_MAIN()
BENCHMARK_MAIN();
......@@ -241,4 +241,4 @@ BENCHMARK(BM_DenseThreadRanges)->Arg(1)->DenseThreadRange(1, 3);
BENCHMARK(BM_DenseThreadRanges)->Arg(2)->DenseThreadRange(1, 4, 2);
BENCHMARK(BM_DenseThreadRanges)->Arg(3)->DenseThreadRange(5, 14, 3);
BENCHMARK_MAIN()
BENCHMARK_MAIN();
......@@ -60,4 +60,4 @@ void BM_counters(benchmark::State& state) {
}
BENCHMARK(BM_counters);
BENCHMARK_MAIN()
BENCHMARK_MAIN();
......@@ -46,4 +46,4 @@ BENCHMARK_DEFINE_F(MyFixture, Bar)(benchmark::State& st) {
BENCHMARK_REGISTER_F(MyFixture, Bar)->Arg(42);
BENCHMARK_REGISTER_F(MyFixture, Bar)->Arg(42)->ThreadPerCpu();
BENCHMARK_MAIN()
BENCHMARK_MAIN();
......@@ -54,4 +54,4 @@ BENCHMARK_DEFINE_F(MapFixture, Lookup)(benchmark::State& state) {
}
BENCHMARK_REGISTER_F(MapFixture, Lookup)->Range(1 << 3, 1 << 12);
BENCHMARK_MAIN()
BENCHMARK_MAIN();
......@@ -71,4 +71,4 @@ static void BM_MultipleRanges(benchmark::State& st) {
}
BENCHMARK(BM_MultipleRanges)->Ranges({{5, 5}, {6, 6}});
BENCHMARK_MAIN()
BENCHMARK_MAIN();
......@@ -62,4 +62,4 @@ void BM_explicit_iteration_count(benchmark::State& state) {
}
BENCHMARK(BM_explicit_iteration_count)->Iterations(42);
BENCHMARK_MAIN()
BENCHMARK_MAIN();
......@@ -25,4 +25,4 @@ BENCHMARK_TEMPLATE_DEFINE_F(MyFixture, Bar, double)(benchmark::State& st) {
}
BENCHMARK_REGISTER_F(MyFixture, Bar);
BENCHMARK_MAIN()
BENCHMARK_MAIN();
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