From ed6115361006240e3c7b02295599e4534cc55a13 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 19 Oct 2013 08:57:20 +0200 Subject: Update internal Boost subset to 1.54.0 --- cutl/details/boost/type_traits/remove_cv.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cutl/details/boost/type_traits/remove_cv.hpp') diff --git a/cutl/details/boost/type_traits/remove_cv.hpp b/cutl/details/boost/type_traits/remove_cv.hpp index 0ba0297..987edee 100644 --- a/cutl/details/boost/type_traits/remove_cv.hpp +++ b/cutl/details/boost/type_traits/remove_cv.hpp @@ -27,6 +27,8 @@ namespace cutl_details_boost { +#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION + namespace detail{ template @@ -35,7 +37,7 @@ struct rvalue_ref_filter_rem_cv typedef typename cutl_details_boost::detail::cv_traits_imp::unqualified_type type; }; -#ifndef BOOST_NO_RVALUE_REFERENCES +#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES // // We can't filter out rvalue_references at the same level as // references or we get ambiguities from msvc: @@ -49,7 +51,6 @@ struct rvalue_ref_filter_rem_cv } -#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION // convert a type T to a non-cv-qualified type - remove_cv BOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_cv,T,typename cutl_details_boost::detail::rvalue_ref_filter_rem_cv::type) -- cgit v1.1