summaryrefslogtreecommitdiffhomepage
path: root/bench/noop.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-11-06 20:55:14 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-11-06 20:55:14 +0100
commit4ef8d5bf09c5b40455bd0161f6b49f9d1ff06468 (patch)
tree8240bb399035d32cb8c7542a34b9674583acb3da /bench/noop.cpp
parent5240a5c28a5225c4c1ebd02eb97c902e10d65657 (diff)
bbbbb
Diffstat (limited to 'bench/noop.cpp')
-rw-r--r--bench/noop.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/bench/noop.cpp b/bench/noop.cpp
deleted file mode 100644
index ca84944a..00000000
--- a/bench/noop.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <benchmark/benchmark.h>
-
-#if 0
-namespace {
-
-void noop(benchmark::State& state)
-{
- for (auto _ : state)
- (void)0;
-}
-
-BENCHMARK(noop);
-
-} // namespace
-#endif