mirror of
https://github.com/boostorg/regex.git
synced 2025-07-18 06:42:08 +02:00
Config updates/patches
[SVN r13973]
This commit is contained in:
@ -239,9 +239,11 @@ message_data<char>::message_data(const std::locale& l, const std::string& regex_
|
||||
//
|
||||
// for some reason Borland C++ Builder 6 won't let us use
|
||||
// std::isspace(char, std::locale) unless we call it
|
||||
// unqualifed - weird.
|
||||
// unqualifed - weird. This seems to be affecting other
|
||||
// STLport users as well (gcc3.1+STLport5), so enable the
|
||||
// workaround for all STLport users...
|
||||
//
|
||||
#if defined(__BORLANDC__) && (__BORLANDC__ == 0x560)
|
||||
#if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
|
||||
using namespace std;
|
||||
# define BOOST_REGEX_STD
|
||||
#else
|
||||
|
Reference in New Issue
Block a user