Skip to content

Commit

Permalink
Use N=257 for all compilers lacking C++14 constexpr
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Dec 21, 2024
1 parent 82533c4 commit abcb365
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/mp_find.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ int main()
{
using boost::mp11::mp_iota_c;

#if BOOST_MP11_WORKAROUND( BOOST_MP11_MSVC, < 1920 )
#if !defined( BOOST_MP11_HAS_CXX14_CONSTEXPR )

int const N = 257;

Expand Down
2 changes: 1 addition & 1 deletion test/mp_find_if_q.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ int main()
using boost::mp11::mp_bind_front;
using boost::mp11::mp_less;

#if BOOST_MP11_WORKAROUND( BOOST_MP11_MSVC, < 1920 )
#if !defined( BOOST_MP11_HAS_CXX14_CONSTEXPR )

int const N = 257;

Expand Down

0 comments on commit abcb365

Please sign in to comment.