Fixed MSVC-stlport build issues

[SVN r20149]
This commit is contained in:
John Maddock
2003-09-22 10:56:29 +00:00
parent 34762f91fb
commit 09a8e172bd

View File

@@ -254,8 +254,9 @@ message_data<char>::message_data(const std::locale& l, const std::string& regex_
// STLport users as well (gcc3.1+STLport5), so enable the // STLport users as well (gcc3.1+STLport5), so enable the
// workaround for all STLport users... // workaround for all STLport users...
// //
#if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) #if (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) && !defined(BOOST_MSVC)
using namespace std; using namespace std;
using stlport::isspace;
# define BOOST_REGEX_STD # define BOOST_REGEX_STD
#else #else
# define BOOST_REGEX_STD std:: # define BOOST_REGEX_STD std::
@@ -878,3 +879,4 @@ std::size_t BOOST_REGEX_CALL cpp_regex_traits<wchar_t>::strwiden(wchar_t *s1, st
#endif #endif