Skip to content

Commit 7f478ea

Browse files
fix mp_replace_at with msvc-12
1 parent 45fbe8a commit 7f478ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/mp11/algorithm.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,7 @@ template<class L, class I, class W> struct mp_replace_at_impl
10651065
{
10661066
static_assert( I::value >= 0, "mp_replace_at<L, I, W>: I must not be negative" );
10671067

1068-
#if ! BOOST_MP11_WORKAROUND( BOOST_MP11_MSVC, < 1900 )
1068+
#if BOOST_MP11_WORKAROUND( BOOST_MP11_MSVC, < 1900 )
10691069

10701070
template<class T1, class T2> using _p = std::is_same<T2, mp_size_t<I::value>>;
10711071
template<class T1, class T2> using _f = W;

0 commit comments

Comments
 (0)