Merge pull request #130 from DanielaE/feature/enable-c++17apply

vc++ 19.10 has std::apply if enabled by /std:c++latest
This commit is contained in:
jzmaddock
2017-04-15 19:18:47 +01:00
committed by GitHub

View File

@ -163,7 +163,9 @@
#endif #endif
// C++17 features // C++17 features
#if !defined(_CPPLIB_VER) || (_CPPLIB_VER < 650) || !defined(_HAS_CXX17) || (_HAS_CXX17 == 0)
# define BOOST_NO_CXX17_STD_APPLY # define BOOST_NO_CXX17_STD_APPLY
#endif
#if !defined(_CPPLIB_VER) || (_CPPLIB_VER < 650) #if !defined(_CPPLIB_VER) || (_CPPLIB_VER < 650)
# define BOOST_NO_CXX17_STD_INVOKE # define BOOST_NO_CXX17_STD_INVOKE
#endif #endif