From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19347 invoked by alias); 25 Oct 2002 16:49:22 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 19294 invoked from network); 25 Oct 2002 16:49:20 -0000 Received: from unknown (HELO tigress.cdcgy.com) (209.167.52.146) by sources.redhat.com with SMTP; 25 Oct 2002 16:49:20 -0000 Received: from mail.cdcgy.com by tigress.cdcgy.com via smtpd (for sources.redhat.com [209.249.29.67]) with SMTP; 25 Oct 2002 16:49:20 UT Received: by CSDNT99.cdcgy.com with Internet Mail Service (5.5.2653.19) id ; Fri, 25 Oct 2002 10:48:06 -0600 Message-ID: <83E3831A88E65844B01DB1A73FB66F93023BBBAC@CSDNT99.cdcgy.com> From: "Jessee, Mark" To: "'Moore, Mathew L'" , "Jessee, Mark" , "'gcc-help@gcc.gnu.org'" Subject: RE: Problems with stringstream Date: Fri, 25 Oct 2002 09:49:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-SW-Source: 2002-10/txt/msg00325.txt.bz2 Matt, Your example fails as well. But I found if I modify it a bit (see below), it works fine. Still not sure why though. Thoughts? Something to do with flushing the stream? #include #include #include using namespace std; int main () { stringstream oss; string mystr; oss << "Sample string"; mystr=oss.str(); cout << "get ready..." << endl; cout << mystr; cout << "all done" << endl; return 0; } -----Original Message----- From: Moore, Mathew L [mailto:MooreML@BATTELLE.ORG] Sent: Friday, October 25, 2002 10:44 AM To: 'Jessee, Mark'; 'gcc-help@gcc.gnu.org' Subject: RE: Problems with stringstream I wonder if this problem can be narrowed down? Does it take this exact code listing to reproduce the problem? Can you just print out a string? string mystr("test"); cout << mystr; If your debugger produces the correct result, it would at least seem that the stringstream portion is working correctly. I wonder if your stdout was remapped somewhere (is that possible?). --Matt > -----Original Message----- > From: Jessee, Mark [mailto:Mark.Jessee@gdcanada.com] > Sent: Friday, October 25, 2002 12:30 > To: 'gcc-help@gcc.gnu.org' > Cc: 'John Love-Jensen' > Subject: RE: Problems with stringstream > > > I'm running it on Mandrake Linux. When I run it from the > command line - no > output. However when I run it from the ddd debugger, it > works fine! Huh?!? > > -----Original Message----- > From: John Love-Jensen [mailto:eljay@adobe.com] > Sent: Friday, October 25, 2002 10:22 AM > To: Jessee, Mark > Subject: Re: Problems with stringstream > > > Using GCC 3.2 on Cygwin, your example worked perfectly as one > would expect. > > Hmmm. > > --Eljay >