]> git.donarmstrong.com Git - rsem.git/blobdiff - boost/type_traits/is_pointer.hpp
Updated boost to v1.55.0
[rsem.git] / boost / type_traits / is_pointer.hpp
index f6ecf336f0205c73b19c3409c7f0d2d0bd7f9481..4e29bb39dd781c56cb93a8b8e1fa2b8ec8349550 100644 (file)
@@ -113,7 +113,7 @@ no_type BOOST_TT_DECL is_pointer_tester(...);
 
 template <bool>
 struct is_pointer_select
-    : ::boost::type_traits::false_result
+    : public ::boost::type_traits::false_result
 {
 };
 
@@ -133,7 +133,7 @@ struct is_pointer_select<false>
 
 template <typename T>
 struct is_pointer_impl
-    : is_pointer_select<
+    : public is_pointer_select<
           ::boost::type_traits::ice_or<
               ::boost::is_reference<T>::value
             , ::boost::is_array<T>::value