1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00
Sprout/sprout/index_tuple/index_sequence_for.hpp

18 lines
422 B
C++
Raw Normal View History

#ifndef SPROUT_INDEX_TUPLE_INDEX_SEQUENCE_FOR_HPP
#define SPROUT_INDEX_TUPLE_INDEX_SEQUENCE_FOR_HPP
#include <sprout/config.hpp>
#include <sprout/index_tuple/index_pack.hpp>
namespace sprout {
//
// index_sequence_for
//
template<typename... Ts>
struct index_sequence_for
: public sprout::uindex_pack<Ts...>
{};
} // namespace sprout
#endif // #ifndef SPROUT_INDEX_TUPLE_INDEX_SEQUENCE_FOR_HPP