Alisdair Meredith wrote: > Scratch theat, I had missed the '!' when adding the borland case.
Oh, and the templating on CharType. I THINK this is the final version <g> [Lesson number 1: before posting, engage brain] 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< CharType > >(is.getloc() ).is( std::ctype_base::space, d); #else const bool is_delimiter = (!std::isspace(d, is.getloc()) ); #endif -- AlisdairM _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost