Refined building without /Zc:wchar_t on msvc 7 and above

[SVN r21147]
This commit is contained in:
John Maddock
2003-12-05 13:01:29 +00:00
parent a247f4d7f8
commit dddfc1a63a
5 changed files with 101 additions and 96 deletions

View File

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