You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
446 B

template<int __i, int... _Indexes, typename _IdxHolder, typename ...
_Elements>
struct __index_holder_impl<__i, __index_holder<_Indexes...>,
_IdxHolder, _Elements ...>
{
typedef typename __index_holder_impl<__i + 1,
__index_holder<_Indexes...,
__i>,
_Elements ...>::type type;
};