--- R2.h.orig Tue Dec 1 18:50:24 1998 +++ R2.h Thu Dec 18 22:14:39 2003 @@ -40,7 +40,7 @@ template class P2xP2 { // x ligne 1 y ligne2 - friend ostream& operator <<(ostream& f, const P2xP2 & c) + friend std::ostream& operator <<(std::ostream& f, const P2xP2 & c) { f << '[' << c.x << ',' << c.y << ']' < operator*(P2 c,P2xP2 cc) @@ -105,7 +105,7 @@ return P2(-x.y,x.x);} template -inline ostream& operator <<(ostream& f, const P2 & c) +inline std::ostream& operator <<(std::ostream& f, const P2 & c) { f << '[' << c.x << ',' << c.y <<']' <