aboutsummaryrefslogtreecommitdiff
path: root/cutl/details/boost/type_traits/is_const.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cutl/details/boost/type_traits/is_const.hpp')
-rw-r--r--cutl/details/boost/type_traits/is_const.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cutl/details/boost/type_traits/is_const.hpp b/cutl/details/boost/type_traits/is_const.hpp
index 887f6ad..2828ed8 100644
--- a/cutl/details/boost/type_traits/is_const.hpp
+++ b/cutl/details/boost/type_traits/is_const.hpp
@@ -64,7 +64,7 @@ struct is_const_rvalue_filter
BOOST_STATIC_CONSTANT(bool, value = ::cutl_details_boost::detail::cv_traits_imp<T*>::is_const);
#endif
};
-#ifndef BOOST_NO_RVALUE_REFERENCES
+#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
template <class T>
struct is_const_rvalue_filter<T&&>
{
@@ -106,7 +106,7 @@ no_type is_const_tester(volatile void *);
template <bool is_ref, bool array>
struct is_const_helper
- : ::cutl_details_boost::type_traits::false_result
+ : public ::cutl_details_boost::type_traits::false_result
{
};
@@ -136,7 +136,7 @@ struct is_const_helper<false,true>
template <typename T>
struct is_const_impl
- : is_const_helper<
+ : public is_const_helper<
is_reference<T>::value
, is_array<T>::value
>::template result_<T>