From 6e31d51033622009512940429688322ea79753ee Mon Sep 17 00:00:00 2001 From: Toon Knapen Date: Tue, 15 Feb 2005 21:40:26 +0000 Subject: [PATCH] aCC does not allow UDT's passed via an ellipsis [SVN r27394] --- include/boost/type_traits/is_convertible.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits/is_convertible.hpp b/include/boost/type_traits/is_convertible.hpp index 88a8ccf..517d1cf 100644 --- a/include/boost/type_traits/is_convertible.hpp +++ b/include/boost/type_traits/is_convertible.hpp @@ -125,7 +125,7 @@ struct is_convertible_basic_impl }; #elif (defined(__EDG_VERSION__) && (__EDG_VERSION__ >= 245) && !defined(__ICL)) \ - || defined(__IBMCPP__) + || defined(__IBMCPP__) || defined(__HP_aCC) // // This is *almost* an ideal world implementation as it doesn't rely // on undefined behaviour by passing UDT's through (...).