From 16f491d48deb961fea757ba4e2fa8fee44650297 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Mon, 20 Jul 2015 19:58:59 +0200 Subject: [PATCH] Update for the VS14 RTM standard library As mentioned by Stephan T. Lavavej here: http://lists.boost.org/Archives/boost/2014/11/217698.php BOOST_NO_CXX11_ADDRESSOF shouldn't be necessary anymore for MSVC 14 RTM. The unit test passes. --- include/boost/config/stdlib/dinkumware.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/boost/config/stdlib/dinkumware.hpp b/include/boost/config/stdlib/dinkumware.hpp index 5d5ec6b6..53d7d2a7 100644 --- a/include/boost/config/stdlib/dinkumware.hpp +++ b/include/boost/config/stdlib/dinkumware.hpp @@ -176,7 +176,9 @@ // 520..610 have std::addressof, but it doesn't support functions // +#if !defined(_CPPLIB_VER) || _CPPLIB_VER < 650 # define BOOST_NO_CXX11_ADDRESSOF +#endif #ifdef _CPPLIB_VER # define BOOST_DINKUMWARE_STDLIB _CPPLIB_VER