This is the mail archive of the
libstdc++@sourceware.cygnus.com
mailing list for the libstdc++ project.
Re: new woes with istream
- To: Benjamin Kosnik <bkoz at cygnus dot com>
- Subject: Re: new woes with istream
- From: dek at cgl dot ucsf dot edu
- Date: Wed, 10 Nov 1999 09:09:36 -0800
- cc: libstdc++ at sourceware dot cygnus dot com
- Reply-To: dek at cgl dot ucsf dot edu
Benjamin Kosnik writes:
>
>fixed, thanks.
Indeed, std::getline() appears to work now. However, I find a bug was introduced recently:
#include <sstream>
#include <fstream>
#include <iostream>
int main(int argc, char **argv)
{
std::cout << 5.0 << std::endl;
return 0;
}
The result is only blank text being output.
Dave