From 98d2bc42207501c96f96bba5f0ce65c0dfab303b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Mon, 3 Mar 2003 16:53:26 +0000 Subject: [PATCH] patch of patch [SVN r17707] --- include/boost/tuple/tuple_io.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/tuple/tuple_io.hpp b/include/boost/tuple/tuple_io.hpp index 322ce6f..d6ea8da 100644 --- a/include/boost/tuple/tuple_io.hpp +++ b/include/boost/tuple/tuple_io.hpp @@ -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()) );