Boost logo

Boost Users :

Subject: Re: [Boost-users] Possible bug: ostringstream
From: Steven Watanabe (watanabesj_at_[hidden])
Date: 2010-12-09 21:21:44


AMDG

On 12/8/2010 10:32 PM, Jammy Cheng Chen wrote:
> I have come across a bug associated the following code, it work fine in
> VS2008 release mode and crash in debug mode, I did some research found
> it should be a bug in the microsoft implementation of ostringstream, Is
> anybody know how to fix this or alternative way? Any ideas would be
> appreciated.
>
> BTW: I must use std::ostringstream because actually lot of dependencies
> dll was developed with std::ostringstream.str() return. I don't want
> change the dependencies project it wastes too much.
>
> std::string result( "" );
> size_t length = source.size();
> std::ostringstream offset;
> long offsetsToSource = 12135L;
> offset<< offsetsToSource;
>
> std::string nsource = offset.str();
> result.reserve( nsource.length() * 1.6 );
> std::for_each( nsource.begin(), nsource.end(),ToXML( result, "\"&<>" ));
>

Um. What exactly does this have to do with Boost?

In Christ,
Steven Watanabe


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net