From 6b8b218efb3b526b2f3d04d0b89676d5ffc195c8 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 10 May 2002 11:35:38 +0000 Subject: [PATCH] Removed tabs, fixed end of files. [SVN r13803] --- include/boost/detail/ob_call_traits.hpp | 32 ++++++++++++------------- 1 file changed, 16 insertions(+), 16 deletions(-) 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;