diff --git a/benchmark/benchmark_mat.cpp b/benchmark/benchmark_mat.cpp index 61ada93..85d303e 100644 --- a/benchmark/benchmark_mat.cpp +++ b/benchmark/benchmark_mat.cpp @@ -9,7 +9,8 @@ using namespace omath; -static void BM_MatMutiplication(benchmark::State& state) + +void mat_multiplication(benchmark::State& state) { using MatType = Mat<128, 128, float, MatStoreType::COLUMN_MAJOR>; MatType a; @@ -24,5 +25,5 @@ static void BM_MatMutiplication(benchmark::State& state) } } -BENCHMARK(BM_MatMutiplication); +BENCHMARK(mat_multiplication); BENCHMARK_MAIN(); \ No newline at end of file