Disabled dual wchar_t mode with vc7 + STLPort, as it doesn't work.

[SVN r21352]
This commit is contained in:
John Maddock
2003-12-20 12:52:27 +00:00
parent 80104e292d
commit 82572db442

View File

@ -195,7 +195,7 @@ using std::distance;
****************************************************************************/
#ifdef __cplusplus
#if defined(BOOST_MSVC) && (BOOST_MSVC >= 1300) && !defined(BOOST_REGEX_V3)
#if defined(BOOST_MSVC) && (BOOST_MSVC >= 1300) && !defined(BOOST_REGEX_V3) && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION))
# define BOOST_REGEX_HAS_SHORT_WCHAR_T
namespace boost{ typedef __wchar_t regex_wchar_type; }
#else