Reinstate BOOST_NO_CXX11_CONSTEXPR for VC14 - support isn't quite there yet.

This commit is contained in:
jzmaddock
2015-07-22 17:59:45 +01:00
parent 160de8b513
commit 5bf05c9fbb

View File

@ -191,12 +191,16 @@
# define BOOST_NO_CXX14_BINARY_LITERALS
# define BOOST_NO_CXX14_GENERIC_LAMBDAS
# define BOOST_NO_CXX14_DIGIT_SEPARATORS
# define BOOST_NO_CXX11_CONSTEXPR
#endif
// C++11 features not supported by any versions
#define BOOST_NO_SFINAE_EXPR
#define BOOST_NO_TWO_PHASE_NAME_LOOKUP
//
// This is somewhat supported in VC14, but we may need to wait for
// a service release before enabling:
//
#define BOOST_NO_CXX11_CONSTEXPR
// C++ 14:
#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304)