]> git.donarmstrong.com Git - rsem.git/blobdiff - boost/type_traits/is_member_function_pointer.hpp
Updated boost to v1.55.0
[rsem.git] / boost / type_traits / is_member_function_pointer.hpp
index 81f1eacc9cdd1f632a2a19a8f35babfbaecc30f9..38babf43a4f333d253501c2709e73f25ffe1b34b 100644 (file)
@@ -55,7 +55,7 @@ namespace detail {
 
 template <bool>
 struct is_mem_fun_pointer_select
-    : ::boost::type_traits::false_result
+    : public ::boost::type_traits::false_result
 {
 };
 
@@ -83,7 +83,7 @@ struct is_mem_fun_pointer_select<false>
 
 template <typename T>
 struct is_member_function_pointer_impl
-    : is_mem_fun_pointer_select<
+    : public is_mem_fun_pointer_select<
           ::boost::type_traits::ice_or<
               ::boost::is_reference<T>::value
             , ::boost::is_array<T>::value