summaryrefslogtreecommitdiff
path: root/src/util.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.hpp')
-rw-r--r--src/util.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.hpp b/src/util.hpp
index 28bcebd..f7254e8 100644
--- a/src/util.hpp
+++ b/src/util.hpp
@@ -16,7 +16,7 @@ namespace WebStat {
template<typename... T>
auto
- visit(auto && visitor, const std::tuple<T...> & values)
+ visit(auto && visitor, std::tuple<T...> & values)
{
std::apply(
[&](auto &&... value) {