Commit 861315fc authored by neverlord's avatar neverlord

added default constructor

parent 267c043e
......@@ -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.
......
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