1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

add tuple construction (from pair)

This commit is contained in:
bolero-MURAKAMI 2013-03-27 17:55:14 +09:00
parent 2e8b85e90c
commit f905d1f02a
9 changed files with 685 additions and 447 deletions

View file

@ -21,10 +21,7 @@ namespace sprout {
public:
typedef Head type;
};
template<
std::size_t N,
typename... Args
>
template<std::size_t N, typename... Args>
struct tppack_at_impl
: public sprout::detail::tppack_at_impl_1<N, Args...>
{