patch of a patch

[SVN r17706]
This commit is contained in:
Jaakko Järvi
2003-03-03 16:45:55 +00:00
parent 1972959fda
commit 8b4daa1385

View File

@ -439,7 +439,7 @@ extract_and_check_delimiter(
#if defined (BOOST_NO_STD_LOCALE)
const bool is_delimiter = !isspace(d);
#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);
#else
const bool is_delimiter = (!std::isspace(d, is.getloc()) );