mirror of
https://github.com/boostorg/regex.git
synced 2025-07-19 23:32:10 +02:00
Patches for HP aCC and Compaq tru64
[SVN r37106]
This commit is contained in:
@ -68,7 +68,13 @@ struct char_architype
|
|||||||
//
|
//
|
||||||
} // namespace boost
|
} // namespace boost
|
||||||
namespace std{
|
namespace std{
|
||||||
template<> struct char_traits<boost::char_architype>{};
|
template<> struct char_traits<boost::char_architype>
|
||||||
|
{
|
||||||
|
// The intent is that this template is not instantiated,
|
||||||
|
// but this typedef gives us a chance of compilation in
|
||||||
|
// case it is:
|
||||||
|
typedef char_architype char_type;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
namespace boost{
|
namespace boost{
|
||||||
//
|
//
|
||||||
|
@ -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, < 60700)
|
#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, < 60700)
|
#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>
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user