Disable features that HP aCC can't cope with (gets basic regression tests passing with aCC).

[SVN r29032]
This commit is contained in:
John Maddock
2005-05-18 11:44:12 +00:00
parent 3022a819e6
commit c2de12f113
3 changed files with 9 additions and 2 deletions

View File

@ -49,12 +49,14 @@ inline bool can_start(unsigned short c, const unsigned char* map, unsigned char
{
return ((c >= (1 << CHAR_BIT)) ? true : map[c] & mask);
}
#if !defined(__HP_aCC)
#if defined(WCHAR_MIN) && (WCHAR_MIN == 0) && !defined(BOOST_NO_INTRINSIC_WCHAR_T)
inline bool can_start(wchar_t c, const unsigned char* map, unsigned char mask)
{
return ((c >= (1 << CHAR_BIT)) ? true : map[c] & mask);
}
#endif
#endif
//