regex configure tweeks.

[SVN r8409]
This commit is contained in:
John Maddock
2000-12-09 11:44:27 +00:00
parent 6221e7f953
commit 6281799115

View File

@ -1140,15 +1140,18 @@ public:
#undef wcsxfrm #undef wcsxfrm
#endif #endif
#if defined(BOOST_NO_STDC_NAMESPACE) || (defined(__STL_NO_USING_FOR_GLOBAL_FUNCTIONS) && defined(__SGI_STL_PORT)) #if defined(BOOST_NO_STDC_NAMESPACE) || (defined(std) && defined(__SGI_STL_PORT))
// //
// fix namespaces: // fix namespaces,
// note that we almost always do this for STLPort, as it doesn't always
// catch all the wide character functions:
namespace std{ namespace std{
using ::ptrdiff_t; using ::ptrdiff_t;
using ::size_t; using ::size_t;
using ::memcpy; using ::memcpy;
using ::memmove; using ::memmove;
using ::memset; using ::memset;
using ::memcmp;
using ::sprintf; using ::sprintf;
using ::strcat; using ::strcat;
using ::strcmp; using ::strcmp;
@ -1251,6 +1254,8 @@ namespace std{