Avoid VC6 bug: don't use a common name like "binder" it throws VC6 if it's used elsewhere in the program.

[SVN r29249]
This commit is contained in:
John Maddock
2005-05-27 17:00:27 +00:00
parent 810b1a9372
commit 0d1dd10357

View File

@ -292,8 +292,8 @@ struct is_convertible_impl_dispatch_base
#else
typedef is_convertible_impl_select<false, false, false> selector;
#endif
typedef typename selector::template rebind<From, To> binder;
typedef typename binder::type type;
typedef typename selector::template rebind<From, To> isc_binder;
typedef typename isc_binder::type type;
};
template <typename From, typename To>