add index_tuple/integer_seq

This commit is contained in:
bolero-MURAKAMI 2013-03-31 13:39:26 +09:00
parent 6a78f64feb
commit 331aaa3559
14 changed files with 358 additions and 180 deletions

View file

@ -7,10 +7,10 @@ namespace sprout {
//
// make_indexes
//
template<typename IndexTupleType>
inline SPROUT_CONSTEXPR typename IndexTupleType::type
template<typename Seq>
inline SPROUT_CONSTEXPR typename Seq::type
make_indexes() {
return typename IndexTupleType::type();
return typename Seq::type();
}
} // namespace sprout