diff --git a/include/boost/detail/ob_call_traits.hpp b/include/boost/detail/ob_call_traits.hpp index 179f9db..9cb58ad 100644 --- a/include/boost/detail/ob_call_traits.hpp +++ b/include/boost/detail/ob_call_traits.hpp @@ -98,21 +98,21 @@ struct call_traits_chooser template struct call_traits_sizeof_chooser2 { - template - struct small_rebind - { - typedef simple_call_traits small_type; - }; + template + struct small_rebind + { + typedef simple_call_traits small_type; + }; }; template<> struct call_traits_sizeof_chooser2 { - template - struct small_rebind - { - typedef standard_call_traits small_type; - }; + template + struct small_rebind + { + typedef standard_call_traits small_type; + }; }; template <> @@ -121,10 +121,10 @@ struct call_traits_chooser template struct rebind { - enum { sizeof_choice = (sizeof(T) <= sizeof(void*)) }; - typedef call_traits_sizeof_chooser2<(sizeof(T) <= sizeof(void*))> chooser; - typedef typename chooser::template small_rebind bound_type; - typedef typename bound_type::small_type type; + enum { sizeof_choice = (sizeof(T) <= sizeof(void*)) }; + typedef call_traits_sizeof_chooser2<(sizeof(T) <= sizeof(void*))> chooser; + typedef typename chooser::template small_rebind bound_type; + typedef typename bound_type::small_type type; }; }; @@ -138,8 +138,8 @@ private: ::boost::is_arithmetic::value, ::boost::is_reference::value > chooser; - typedef typename chooser::template rebind bound_type; - typedef typename bound_type::type call_traits_type; + typedef typename chooser::template rebind bound_type; + typedef typename bound_type::type call_traits_type; public: typedef typename call_traits_type::value_type value_type; typedef typename call_traits_type::reference reference;