1
0
forked from boostorg/mp11

Add mp_iota, mp_at, mp_take.

This commit is contained in:
Peter Dimov
2015-06-22 03:37:15 +03:00
parent 8bf6feb206
commit 4094f2f73f
7 changed files with 308 additions and 2 deletions

View File

@@ -49,6 +49,8 @@ template<class T, T N> struct make_integer_sequence_impl_
{
private:
static_assert( N >= 0, "make_integer_sequence<T, N>: N must not be negative" );
static T const M = N / 2;
static T const R = N % 2;