Merge recursive expressions performance update from Trunk.

Merge Makefile update from Trunk.
Merge history update.

[SVN r58542]
This commit is contained in:
John Maddock
2009-12-28 13:07:04 +00:00
parent ae79f29895
commit e41acbc33f
47 changed files with 3593 additions and 3511 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)
{