mirror of
https://github.com/boostorg/tuple.git
synced 2025-12-19 13:22:41 +01:00
Compare commits
2 Commits
boost-1.90
...
svn-branch
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
98d2bc4220 | ||
|
|
9d262adad7 |
@@ -439,7 +439,7 @@ 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__ )
|
#elif defined ( __BORLANDC__ )
|
||||||
const bool !is_delimiter = std::use_facet< std::ctype< CharType > >
|
const bool is_delimiter = !std::use_facet< std::ctype< CharType > >
|
||||||
(is.getloc() ).is( std::ctype_base::space, d);
|
(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()) );
|
||||||
|
|||||||
Reference in New Issue
Block a user