5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-01-08 17:08:28 -04:00

AP_Math: add missing ; on benchmark test

This commit is contained in:
Pierre Kancir 2020-09-03 10:06:25 +02:00 committed by Peter Barker
parent 2e60f361fa
commit 240c34ecde
2 changed files with 2 additions and 2 deletions

View File

@ -98,4 +98,4 @@ static void BM_GeodesicGridSections(benchmark::State& state)
/* Benchmark each section */
BENCHMARK(BM_GeodesicGridSections)->DenseRange(0, 79);
BENCHMARK_MAIN()
BENCHMARK_MAIN();

View File

@ -19,4 +19,4 @@ static void BM_MatrixMultiplication(benchmark::State& state)
BENCHMARK(BM_MatrixMultiplication);
BENCHMARK_MAIN()
BENCHMARK_MAIN();