#include "calc.h" #include static void BM_Add(benchmark::State &state) { while (state.KeepRunning()) { Add(1, 2); } } BENCHMARK(BM_Add);