Ooops, fix version check.

[SVN r37115]
This commit is contained in:
John Maddock
2007-02-28 17:18:33 +00:00
parent 7ac90de75a
commit 2643fcb245

View File

@ -76,7 +76,7 @@ struct regex_traits : public implementationT
// required "standard" ones: // required "standard" ones:
// //
namespace re_detail{ namespace re_detail{
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(60000)) #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !BOOST_WORKAROUND(__HP_aCC, < 60000)
BOOST_MPL_HAS_XXX_TRAIT_DEF(boost_extensions_tag) BOOST_MPL_HAS_XXX_TRAIT_DEF(boost_extensions_tag)
#else #else
template<class T> template<class T>
@ -129,7 +129,7 @@ struct compute_wrapper_base
{ {
typedef BaseT type; typedef BaseT type;
}; };
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(60000)) #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !BOOST_WORKAROUND(__HP_aCC, < 60000)
template <class BaseT> template <class BaseT>
struct compute_wrapper_base<BaseT, false> struct compute_wrapper_base<BaseT, false>
{ {