Skip to content

Commit

Permalink
fix mp_replace_at with msvc-12
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpoelen committed Jul 5, 2023
1 parent 19a4a07 commit 477063d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/mp11/algorithm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,7 @@ template<class L, class I, class W> struct mp_replace_at_impl
{
static_assert( I::value >= 0, "mp_replace_at<L, I, W>: I must not be negative" );

#if ! BOOST_MP11_WORKAROUND( BOOST_MP11_MSVC, < 1900 )
#if BOOST_MP11_WORKAROUND( BOOST_MP11_MSVC, < 1900 )

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

0 comments on commit 477063d

Please sign in to comment.