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]
This commit is contained in:
John Maddock
2005-05-17 11:49:35 +00:00
parent d9ef904fa1
commit 810b1a9372

View File

@ -279,6 +279,7 @@ struct is_convertible_impl_select<true, false, true>
template <typename From, typename To>
struct is_convertible_impl_dispatch_base
{
#ifndef __HP_aCC
typedef is_convertible_impl_select<
::boost::is_arithmetic<From>::value,
::boost::is_arithmetic<To>::value,
@ -288,6 +289,9 @@ struct is_convertible_impl_dispatch_base
false
#endif
> selector;
#else
typedef is_convertible_impl_select<false, false, false> selector;
#endif
typedef typename selector::template rebind<From, To> binder;
typedef typename binder::type type;
};