Bump msvc version checks from <= 1910 to < 1920

This commit is contained in:
Peter Dimov
2017-08-22 22:01:10 +03:00
parent 181c74592f
commit d8628a7c5e
7 changed files with 14 additions and 14 deletions

View File

@@ -54,7 +54,7 @@ int main()
#endif
#if !defined( BOOST_NO_CXX14_CONSTEXPR ) && !BOOST_WORKAROUND( BOOST_MSVC, <= 1910 )
#if !defined( BOOST_NO_CXX14_CONSTEXPR ) && !BOOST_WORKAROUND( BOOST_MSVC, < 1920 )
constexpr auto r1 = mp_for_each<mp_list<int, short, char>>( F{0} );
static_assert( r1.s == 123, "r1.s == 123" );