aboutsummaryrefslogtreecommitdiff
path: root/butl/vector-view
diff options
context:
space:
mode:
Diffstat (limited to 'butl/vector-view')
-rw-r--r--butl/vector-view4
1 files changed, 4 insertions, 0 deletions
diff --git a/butl/vector-view b/butl/vector-view
index c0cc433..fdff783 100644
--- a/butl/vector-view
+++ b/butl/vector-view
@@ -48,6 +48,10 @@ namespace butl
vector_view (const std::vector<T1, A>& v)
: data_ (v.data ()), size_ (v.size ()) {}
+ template <typename T1>
+ vector_view (const vector_view<T1>& v)
+ : data_ (v.data ()), size_ (v.size ()) {}
+
vector_view (vector_view&&) = default;
vector_view (const vector_view&) = default;
vector_view& operator= (vector_view&&) = default;