blob: 3baa2958b994acda605ed9fd10b67201eea6dce6 (
plain)
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 {
#pragma message("TODO!")
[[maybe_unused]] void Raycast(benchmark::State& state)
{
for (auto _ : state)
(void)0;
}
BENCHMARK(Raycast)->Unit(benchmark::kMicrosecond);
} // namespace
} // namespace floormat
|