------- Comment #3 from eric_jrdn2 at yahoo dot fr  2006-09-12 15:32 -------
I tried this :

#include <iostream>
#include <complex>
#include <iomanip>

using namespace std;

int main(){
        ostringstream ostr;
        ostr.str("azerty");
        cout<<ostr.tellp()<<endl;
        ostr<<"123";
        cout<<ostr.str()<<endl;
        cout<<ostr.tellp()<<endl;
 }

output is :
0
123rty
3

Where should I look at?


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29035

Reply via email to