1
0
forked from boostorg/mp11

Clang -x cuda: >>> mixmatch

This commit is contained in:
Axel Huebl
2018-04-05 18:55:25 +02:00
parent 88485f900a
commit c24fe1750c
5 changed files with 9 additions and 9 deletions

View File

@@ -73,7 +73,7 @@ public:
using type = S4;
};
template<class T, T N> struct make_integer_sequence_impl: iseq_if_c<N == 0, iseq_identity<integer_sequence<T>>, iseq_if_c<N == 1, iseq_identity<integer_sequence<T, 0>>, make_integer_sequence_impl_<T, N>>>
template<class T, T N> struct make_integer_sequence_impl: iseq_if_c<N == 0, iseq_identity<integer_sequence<T>>, iseq_if_c<N == 1, iseq_identity<integer_sequence<T, 0>>, make_integer_sequence_impl_<T, N> > >
{
};