diff --git a/include/boost/type_traits/is_convertible.hpp b/include/boost/type_traits/is_convertible.hpp index 635e4b8..5b62877 100644 --- a/include/boost/type_traits/is_convertible.hpp +++ b/include/boost/type_traits/is_convertible.hpp @@ -292,8 +292,8 @@ struct is_convertible_impl_dispatch_base #else typedef is_convertible_impl_select selector; #endif - typedef typename selector::template rebind binder; - typedef typename binder::type type; + typedef typename selector::template rebind isc_binder; + typedef typename isc_binder::type type; }; template