Re: Probs with g++ and cout

1996-11-15 Thread joost witteveen
> > [EMAIL PROTECTED] (Jonas Rathert) writes: > > > since updating to "rex" I've got some problems with C++. > > libg++27: 2.7.1-3 > > You need to update to libg++27 2.7.2.1, which right now is only in > unstable, or bo. But I will move it to frozen, or rex right now, so > it'll

Re: Probs with g++ and cout

1996-11-15 Thread Guy Maor
[EMAIL PROTECTED] (Jonas Rathert) writes: > since updating to "rex" I've got some problems with C++. > libg++27: 2.7.1-3 You need to update to libg++27 2.7.2.1, which right now is only in unstable, or bo. But I will move it to frozen, or rex right now, so it'll be in mirrors in an

Re: Probs with g++ and cout

1996-11-15 Thread Luis Francisco Gonzalez
> > Hello, > > since updating to "rex" I've got some problems with C++. > When I compile this code: > > --8<---8<-8<---8<--8<--- > #include > > int > main() > { > double z = 2.00; > cout << z << " ^2 = " << z * z << endl; > return

Probs with g++ and cout

1996-11-15 Thread Jonas Rathert
Hello, since updating to "rex" I've got some problems with C++. When I compile this code: --8<---8<-8<---8<--8<--- #include int main() { double z = 2.00; cout << z << " ^2 = " << z * z << endl; return 0; } --8<---8<