Boost logo

Boost :

From: Alisdair Meredith (alisdair.meredith_at_[hidden])
Date: 2003-02-02 09:16:51


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

Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk