Skip to content
Snippets Groups Projects
Commit 23b5985b authored by Patrick Jaap's avatar Patrick Jaap
Browse files

Merge branch 'fix/tuplevector-inherit-all-constructors' into 'master'

TupleVector: inherit all constructors from std::tuple

See merge request agnumpde/dune-solvers!65
parents b3f96fc7 64a9ab73
Branches feature/whitespace-fix
No related tags found
No related merge requests found
......@@ -22,15 +22,8 @@ namespace Solvers
public:
/** \brief Construct from a set of arguments */
template<class... TT>
constexpr TupleVector(TT&&... tt) :
Base(std::forward<TT>(tt)...)
{}
/** \brief Default constructor */
constexpr TupleVector()
{}
// inherit all constructors from std::tuple
using Base::Base;
/** \brief Const access to the tuple elements */
template<std::size_t i>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment