Modified function test overloads so as not to produce ambiguities with some compilers.

[SVN r16049]
This commit is contained in:
John Maddock
2002-11-02 11:32:03 +00:00
parent 3353896f3d
commit bb241cc1e2

View File

@ -107,8 +107,8 @@ struct is_convertible_impl
struct any_conversion
{
template <typename T> any_conversion(const T&);
template <typename T> any_conversion(T&);
template <typename T> any_conversion(const volatile T&);
//template <typename T> any_conversion(T&);
};
template <typename T> struct checker
@ -129,8 +129,8 @@ struct is_convertible_impl
struct any_conversion
{
template <typename T> any_conversion(const T&);
template <typename T> any_conversion(T&);
template <typename T> any_conversion(const volatile T&);
//template <typename T> any_conversion(T&);
};
template <typename From, typename To>