summaryrefslogtreecommitdiff
path: root/boost/mp11/integer_sequence.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/mp11/integer_sequence.hpp')
-rw-r--r--boost/mp11/integer_sequence.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/mp11/integer_sequence.hpp b/boost/mp11/integer_sequence.hpp
index 08e312095b..ad72bd00ce 100644
--- a/boost/mp11/integer_sequence.hpp
+++ b/boost/mp11/integer_sequence.hpp
@@ -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> > >
{
};