1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#include "src/raycast.hpp" #include <benchmark/benchmark.h> namespace floormat { namespace { #warning TODO! [[maybe_unused]] void Raycast(benchmark::State& state) { for (auto _ : state) (void)0; } BENCHMARK(Raycast)->Unit(benchmark::kMicrosecond); } // namespace } // namespace floormat