From cff3acdd264f615754e63f1d09e6758a3ad088c2 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 15 Jan 2007 10:42:05 +0000 Subject: [PATCH] Updated HP-aCC workaround. [SVN r36731] --- include/boost/type_traits/is_convertible.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/type_traits/is_convertible.hpp b/include/boost/type_traits/is_convertible.hpp index f817f66..54a11a1 100644 --- a/include/boost/type_traits/is_convertible.hpp +++ b/include/boost/type_traits/is_convertible.hpp @@ -340,7 +340,7 @@ struct is_convertible_impl_select template struct is_convertible_impl_dispatch_base { -#ifndef __HP_aCC +#if !BOOST_WORKAROUND(__HP_aCC, < 60700) typedef is_convertible_impl_select< ::boost::is_arithmetic::value, ::boost::is_arithmetic::value, @@ -413,3 +413,4 @@ BOOST_TT_AUX_BOOL_TRAIT_DEF2(is_convertible,From,To,(::boost::detail::is_convert #include #endif // BOOST_TT_IS_CONVERTIBLE_HPP_INCLUDED +