mirror of
https://github.com/boostorg/tuple.git
synced 2025-07-30 04:37:15 +02:00
a patch for borland
[SVN r17660]
This commit is contained in:
@ -438,6 +438,9 @@ extract_and_check_delimiter(
|
|||||||
|
|
||||||
#if defined (BOOST_NO_STD_LOCALE)
|
#if defined (BOOST_NO_STD_LOCALE)
|
||||||
const bool is_delimiter = !isspace(d);
|
const bool is_delimiter = !isspace(d);
|
||||||
|
#elif defined ( __BORLANDC__ )
|
||||||
|
const bool !is_delimiter = std::use_facet< std::ctype< CharType > >
|
||||||
|
(is.getloc() ).is( std::ctype_base::space, d);
|
||||||
#else
|
#else
|
||||||
const bool is_delimiter = (!std::isspace(d, is.getloc()) );
|
const bool is_delimiter = (!std::isspace(d, is.getloc()) );
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user