Commit 2138dac2 authored by Dominik Charousset's avatar Dominik Charousset

Add const qualifier to `message()` cast operator

parent 5710a386
...@@ -94,7 +94,7 @@ class cow_tuple<Head, Tail...> { ...@@ -94,7 +94,7 @@ class cow_tuple<Head, Tail...> {
return cow_tuple<Tail...>::offset_subtuple(m_vals, 1); return cow_tuple<Tail...>::offset_subtuple(m_vals, 1);
} }
inline operator message() { inline operator message() const {
return message{m_vals}; return message{m_vals};
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment