Symbian patches.

Fixes #3764.
Fixes #3763.

[SVN r58342]
This commit is contained in:
John Maddock
2009-12-13 11:40:28 +00:00
parent 35c63fc141
commit ff4eaacbc4
3 changed files with 5 additions and 5 deletions

View File

@ -61,7 +61,7 @@ inline bool can_start(unsigned short c, const unsigned char* map, unsigned char
{
return ((c >= (1 << CHAR_BIT)) ? true : map[c] & mask);
}
#if !defined(__hpux) // WCHAR_MIN not usable in pp-directives.
#if !defined(__hpux) && !defined(__WINSCW__)// WCHAR_MIN not usable in pp-directives.
#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)
{