Permalink
Browse files
added default constructor
- Loading branch information...
Showing
with
2 additions
and
0 deletions.
-
+2
−0
cppa/cow_tuple.hpp
|
@@ -90,6 +90,8 @@ class cow_tuple<Head, Tail...> { |
|
|
|
|
|
static constexpr size_t num_elements = sizeof...(Tail) + 1;
|
|
|
|
|
|
+ cow_tuple() : m_vals(new data_type) { }
|
|
|
+
|
|
|
/**
|
|
|
* @brief Initializes the cow_tuple with @p args.
|
|
|
* @param args Initialization values.
|
|
|
0 comments on commit
861315f