------- Comment #6 from rguenth at gcc dot gnu dot org 2009-10-18 14:37 ------- namespace std { template<typename _CharT> class basic_ostream; typedef basic_ostream<char> ostream; extern ostream cerr; }; class Affine_Space { void print() const; }; std::ostream& operator<<(std::ostream& s, const Affine_Space& gr); void Affine_Space::print() const { std::cerr << *this; } std::ostream& operator<<(std::ostream& s, const Affine_Space& gr) { s << gr; return s; }
-- rguenth at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjambor at suse dot cz Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfirmed|0000-00-00 00:00:00 |2009-10-18 14:37:25 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41740