Alisdair Meredith wrote: > OTOH, maybe someone more familiar with stream implementations can take > it from here and provide the rest of the solution?
Scratch theat, I had missed the '!' when adding the borland case. tuple_io.hpp (from line 439) #if defined (BOOST_NO_STD_LOCALE) const bool is_delimiter = !isspace(d); #elif defined ( __BORLANDC__ ) const bool !is_delimiter = std::use_facet< std::ctype< char > >(is.getloc() ).is( std::ctype_base::space, d); #else const bool is_delimiter = (!std::isspace(d, is.getloc()) ); #endif This passes all tests. -- AlisdairM _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost