mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
19 lines
469 B
C++
19 lines
469 B
C++
#ifndef SPROUT_INDEX_TUPLE_PACK_INDEXES_HPP
|
|
#define SPROUT_INDEX_TUPLE_PACK_INDEXES_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/index_tuple/detail/make_indexes_helper.hpp>
|
|
|
|
namespace sprout {
|
|
//
|
|
// pack_indexes
|
|
//
|
|
template<typename... Args>
|
|
struct pack_indexes
|
|
: public sprout::detail::make_indexes_helper<
|
|
sprout::index_range<0, sizeof...(Args)>
|
|
>
|
|
{};
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_INDEX_TUPLE_PACK_INDEXES_HPP
|