aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bench_bitvec.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-02-03 15:04:36 -0500
committerDavid Robillard <d@drobilla.net>2023-02-03 15:04:36 -0500
commit71e7e40b84d5efe4b12da22ea16eb842a8cfad39 (patch)
tree3d940ce3c50d5fda100e064a632c17957d2b1f0d /benchmark/bench_bitvec.cpp
parent700687d95096208433cf23eb67a02f5b743e4672 (diff)
downloadchilbert-71e7e40b84d5efe4b12da22ea16eb842a8cfad39.tar.gz
chilbert-71e7e40b84d5efe4b12da22ea16eb842a8cfad39.tar.bz2
chilbert-71e7e40b84d5efe4b12da22ea16eb842a8cfad39.zip
Add missing const qualifiers
Diffstat (limited to 'benchmark/bench_bitvec.cpp')
-rw-r--r--benchmark/bench_bitvec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/bench_bitvec.cpp b/benchmark/bench_bitvec.cpp
index 433274c..0eed895 100644
--- a/benchmark/bench_bitvec.cpp
+++ b/benchmark/bench_bitvec.cpp
@@ -243,7 +243,7 @@ template<template<class U, size_t M> class Bench, size_t N>
void
bench_row(Context& ctx, std::ostream& os)
{
- std::array<Duration, 4> results = {
+ const std::array<Duration, 4> results = {
((N <= chilbert::SmallBitVec::bits_per_rack)
? Bench<chilbert::SmallBitVec, N>{}(ctx)
: Duration{}),