aboutsummaryrefslogtreecommitdiff
path: root/cutl/details/boost/type_traits/is_volatile.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cutl/details/boost/type_traits/is_volatile.hpp')
-rw-r--r--cutl/details/boost/type_traits/is_volatile.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cutl/details/boost/type_traits/is_volatile.hpp b/cutl/details/boost/type_traits/is_volatile.hpp
index 48dd6d9..32e8403 100644
--- a/cutl/details/boost/type_traits/is_volatile.hpp
+++ b/cutl/details/boost/type_traits/is_volatile.hpp
@@ -51,7 +51,7 @@ struct is_volatile_rval_filter
BOOST_STATIC_CONSTANT(bool, value = ::cutl_details_boost::detail::cv_traits_imp<T*>::is_volatile);
#endif
};
-#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:
@@ -94,7 +94,7 @@ no_type is_volatile_tester(void const*);
template <bool is_ref, bool array>
struct is_volatile_helper
- : ::cutl_details_boost::type_traits::false_result
+ : public ::cutl_details_boost::type_traits::false_result
{
};
@@ -124,7 +124,7 @@ struct is_volatile_helper<false,true>
template <typename T>
struct is_volatile_impl
- : is_volatile_helper<
+ : public is_volatile_helper<
is_reference<T>::value
, is_array<T>::value
>::template result_<T>