1
0
forked from boostorg/mp11

Fix typo in VS2013 workaround

This commit is contained in:
Peter Dimov
2021-03-12 07:10:41 +02:00
parent 4a1f343dbc
commit 5babdec063

View File

@@ -1249,7 +1249,7 @@ template<class L, class S> struct mp_intersperse_impl
#if BOOST_MP11_WORKAROUND( BOOST_MP11_MSVC, <= 1800 )
template<template<class...> class L, class... T> struct mp_intersperse_impl<L<T...>, S>
template<template<class...> class L, class... T, class S> struct mp_intersperse_impl<L<T...>, S>
{
static_assert( sizeof...(T) == 0, "T... must be empty" );
using type = L<>;