From 39108ae4a4f0462f7078ff8e3b724244e13872fb Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 14 Jul 2001 11:08:53 +0000 Subject: [PATCH] changed member "bind" to "n_bind" to fix problem with upcoming binder library. [SVN r10611] --- include/boost/type_traits/conversion_traits.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/type_traits/conversion_traits.hpp b/include/boost/type_traits/conversion_traits.hpp index 74c17b0..aceeec4 100644 --- a/include/boost/type_traits/conversion_traits.hpp +++ b/include/boost/type_traits/conversion_traits.hpp @@ -53,7 +53,7 @@ namespace detail{ struct from_not_void_conversion { template - struct bind { + struct n_bind { static no_type _m_check(...); static yes_type _m_check(To); public: @@ -64,7 +64,7 @@ namespace detail{ }; struct from_is_void_conversion { template - struct bind { + struct n_bind { enum { exists = ::boost::is_void::value }; }; }; @@ -83,7 +83,7 @@ template struct is_convertible { typedef typename detail::conversion_helper::type Selector; - typedef Selector::template bind Conversion; + typedef Selector::template n_bind Conversion; public: enum { value = Conversion::exists }; };