From 8caecf0af864ef2a2864e9393d01816f13d5663d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20M=2E=20L=C3=B3pez=20Mu=C3=B1oz?= Date: Mon, 13 Feb 2006 07:47:53 +0000 Subject: [PATCH] commented previous changes for CW [SVN r32881] --- include/boost/type_traits/is_convertible.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/boost/type_traits/is_convertible.hpp b/include/boost/type_traits/is_convertible.hpp index eb836c0..f817f66 100644 --- a/include/boost/type_traits/is_convertible.hpp +++ b/include/boost/type_traits/is_convertible.hpp @@ -189,6 +189,12 @@ struct is_convertible_basic_impl }; #elif defined(__MWERKS__) +// +// CW works with the technique implemented above for EDG, except when From +// is a function type (or a reference to such a type), in which case +// any_conversion won't be accepted as a valid conversion. We detect this +// exceptional situation and channel it through an alternative algorithm. +// template struct is_convertible_basic_impl_aux;