Hi,

I have a small patch to is_convertible.hpp that will allow a version of
KCC (__EDG_VERSION__ == 243) to use the *almost* ideal implementation of
is_convertible.  The current design only uses the ideal implementation for
__EDG_VERSION__ >= 245, and the current choice fails to compile for me.


Cheers,

ron
Index: is_convertible.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/type_traits/is_convertible.hpp,v
retrieving revision 1.20
diff -u -r1.20 is_convertible.hpp
--- is_convertible.hpp  31 Jul 2003 01:16:32 -0000      1.20
+++ is_convertible.hpp  19 Aug 2003 15:15:09 -0000
@@ -129,7 +129,7 @@
 };
 
 #elif (defined(BOOST_MSVC) && (BOOST_MSVC > 1310)) \
-      || (defined(__EDG_VERSION__) && (__EDG_VERSION__ >= 245) && 
(!defined(BOOST_INTEL) || BOOST_INTEL >= 700)) \
+      || (defined(__EDG_VERSION__) && (__EDG_VERSION__ >= 243) && 
(!defined(BOOST_INTEL) || BOOST_INTEL >= 700)) \
       || defined(__IBMCPP__)
 //
 // This is *almost* an ideal world implementation as it doesn't rely
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to