From 95fe1c03ac17f1e34a9309c0abc2d9c2b017f38d Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 10 Jan 2018 15:27:31 +0000 Subject: [PATCH] Update deprecated macros --- include/boost/cxx11_char_types.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/cxx11_char_types.hpp b/include/boost/cxx11_char_types.hpp index eab46a46..71b9b70d 100644 --- a/include/boost/cxx11_char_types.hpp +++ b/include/boost/cxx11_char_types.hpp @@ -49,7 +49,7 @@ namespace boost { -# if defined(BOOST_NO_CHAR16_T) && (!defined(_MSC_VER) || _MSC_VER < 1600) // 1600 == VC++10 +# if defined(BOOST_NO_CXX11_CHAR16_T) && (!defined(_MSC_VER) || _MSC_VER < 1600) // 1600 == VC++10 typedef boost::uint_least16_t char16; typedef std::basic_string u16string; # else @@ -57,7 +57,7 @@ namespace boost typedef std::u16string u16string; # endif -# if defined(BOOST_NO_CHAR32_T) && (!defined(_MSC_VER) || _MSC_VER < 1600) // 1600 == VC++10 +# if defined(BOOST_NO_CXX11_CHAR32_T) && (!defined(_MSC_VER) || _MSC_VER < 1600) // 1600 == VC++10 typedef boost::uint_least32_t char32; typedef std::basic_string u32string; # else