From a4f43cabd0eb04bcddf1117dc0b5d2c9f821fdf8 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Mon, 22 Jun 2020 02:27:49 +0200 Subject: [PATCH] Fix the smoother benchmark --- benchmarks/BM_smoothers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/BM_smoothers.cpp b/benchmarks/BM_smoothers.cpp index 920fa808..caca19b8 100644 --- a/benchmarks/BM_smoothers.cpp +++ b/benchmarks/BM_smoothers.cpp @@ -21,7 +21,7 @@ public: input = std::vector(state.range(0)); output = std::vector(state.range(0)); std::generate(input.begin(), input.end(), [&]() { return dist(gen); }); - sfz::cumsum(input, absl::MakeSpan(input)); + sfz::cumsum(input, absl::MakeSpan(input)); } void TearDown(const ::benchmark::State& /* state */)