7 #ifndef CPPWAMP_INTEGERSEQUENCE_HPP
8 #define CPPWAMP_INTEGERSEQUENCE_HPP
10 #ifndef CPPWAMP_FOR_DOXYGEN // GenIntegerSequence confuses the Doxygen parser
19 template<
int ...>
struct IntegerSequence { };
23 template<
int N,
int ...S>
24 struct GenIntegerSequence : GenIntegerSequence<N-1, N-1, S...> { };
27 struct GenIntegerSequence<0, S...>
29 using type = IntegerSequence<S...>;
36 #endif // CPPWAMP_FOR_DOXYGEN
38 #endif // CPPWAMP_INTEGERSEQUENCE_HPP