Store Sequence sequence location in a shared_ptr class
[mussa.git] / alg / color.cpp
index 1c01f892941f51eb05d1065c4795b7d1ce5a4367..64eb7821e941f2ae0ad203b6fb2f621559e2b40f 100644 (file)
@@ -90,8 +90,6 @@ bool operator==(const Color &x, const Color &y)
 
 std::ostream &operator<<(std::ostream &out, const Color &c)
 {
-  out << "Color(" << c.r() << ", " 
-                    << c.g() << ", " 
-                    << c.b() << ", " 
-                    << c.a() << ")";
+  out << c.r() << " " << c.g() << " " << c.b() << " " << c.a();
+  return out;
 }