Add operator= for tuple
This commit is contained in:
parent
616819edbe
commit
a4f41f84b5
1 changed files with 3 additions and 0 deletions
|
@ -66,6 +66,9 @@ struct Tuple : public impl::TupleHelper<std::index_sequence_for<Ts...>, Ts...> {
|
|||
inline constexpr Tuple(const Tuple&) = default;
|
||||
inline constexpr Tuple(Tuple&&) = default;
|
||||
inline constexpr Tuple(Tuple&) = default;
|
||||
inline constexpr Tuple& operator=(const Tuple&) = default;
|
||||
inline constexpr Tuple& operator=(Tuple&&) = default;
|
||||
inline constexpr Tuple& operator=(Tuple&) = default;
|
||||
inline constexpr Tuple() :
|
||||
impl::TupleHelper<std::index_sequence_for<Ts...>, Ts...>() {};
|
||||
template <typename... TTs>
|
||||
|
|
Loading…
Reference in a new issue