Boost logo

Boost :

From: Paul A. Bristow (boost_at_[hidden])
Date: 2002-07-08 01:14:43


Thanks for this suggestion - but most important I was saying that a Boost
release should not contain 'features' like this, especially when they cause
such perplexing effects.

Paul

> -----Original Message-----
> From: boost-bounces_at_[hidden]
> [mailto:boost-bounces_at_[hidden]]On Behalf Of Peter Schmitteckert
> (boost)
> Sent: Friday, July 05, 2002 8:12 PM
> To: boost_at_[hidden]
> Subject: Re: [boost] uBLAS formal review
>
>
> Salut,
>
> On Friday 05 July 2002 13:41, Paul A. Bristow wrote:
>
> > The reason is that many files contain CR, CR (0x0D, 0x0D)
> > rather than CR, LF ( 0x0D, 0x0A) in quite a few places.
> > These are invisible to the MS IDE editor and Textpad,
> > except in binary display mode. Linux/Microsoft difference?
> >
> > After much scratching of my head,
> > and eventually removal of tuffs of hair,
> > I conclude this produces terminal confusion to the compiler,
> > and to me!
> If I remebr correctly, Wordpad should understand it,
> at least Word does.
>
> Why not converting them with a small C++ programm
>
> char c;
> while( true)
> {
> std::cin >> c;
> if( std::cin.eof() )
> break;
>
> std::cout << c;
> if( int(c) == 0x0d )
> std::cout << char(0x0A);
> }
>
> or something similar.
>
> Best wishes,
> Peter
> _______________________________________________
> Unsubscribe & other changes:
> http://lists.boost.org/mailman/listinfo.cgi/boost
>
>


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