From 810b1a937206fa28d130d9b2b40550665d3aa62f Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 17 May 2005 11:49:35 +0000 Subject: [PATCH] HP aCC can't cope with the new warning supression code in this release, just disable it for now until someone can figure out a proper fix, or until HP fix their compiler.... [SVN r28988] --- include/boost/type_traits/is_convertible.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/type_traits/is_convertible.hpp b/include/boost/type_traits/is_convertible.hpp index ac2cda3..635e4b8 100644 --- a/include/boost/type_traits/is_convertible.hpp +++ b/include/boost/type_traits/is_convertible.hpp @@ -279,6 +279,7 @@ struct is_convertible_impl_select template struct is_convertible_impl_dispatch_base { +#ifndef __HP_aCC typedef is_convertible_impl_select< ::boost::is_arithmetic::value, ::boost::is_arithmetic::value, @@ -288,6 +289,9 @@ struct is_convertible_impl_dispatch_base false #endif > selector; +#else + typedef is_convertible_impl_select selector; +#endif typedef typename selector::template rebind binder; typedef typename binder::type type; };