forked from boostorg/config
Merge pull request #135 from DanielaE/fix/dinkumware-v650-apply
The library implementations in MSVC 14.0 and 14.1 have both version n…
This commit is contained in:
@ -163,7 +163,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// C++17 features
|
// C++17 features
|
||||||
#if !defined(_CPPLIB_VER) || (_CPPLIB_VER < 650) || !defined(_HAS_CXX17) || (_HAS_CXX17 == 0)
|
#if !defined(_CPPLIB_VER) || (_CPPLIB_VER < 650) || !defined(BOOST_MSVC) || (BOOST_MSVC < 1910) || !defined(_HAS_CXX17) || (_HAS_CXX17 == 0)
|
||||||
# define BOOST_NO_CXX17_STD_APPLY
|
# define BOOST_NO_CXX17_STD_APPLY
|
||||||
#endif
|
#endif
|
||||||
#if !defined(_CPPLIB_VER) || (_CPPLIB_VER < 650)
|
#if !defined(_CPPLIB_VER) || (_CPPLIB_VER < 650)
|
||||||
|
Reference in New Issue
Block a user