remove debugging output from tests
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Thu, 19 Apr 2007 11:00:18 +0200
changeset 435 dd85b014c690
parent 434 e7617e9f1f20
child 436 e3223ddba0fb
remove debugging output from tests
src/common/tags.cc
--- a/src/common/tags.cc	Thu Apr 19 10:41:29 2007 +0200
+++ b/src/common/tags.cc	Thu Apr 19 11:00:18 2007 +0200
@@ -245,19 +245,19 @@
 public:
   MySmartTag ()
   {
-    std::cout << "construct" << std::endl;
+    //std::cout << "construct" << std::endl;
   }
   MySmartTag (const MySmartTag &o)
   {
-    std::cout << "copy" << std::endl;
+    //std::cout << "copy" << std::endl;
   }
   ~MySmartTag ()
   {
-    std::cout << "destruct" << std::endl;
+    //std::cout << "destruct" << std::endl;
   }
   MySmartTag &operator = (const MySmartTag &o)
   {
-    std::cout << "assign" << std::endl;
+    //std::cout << "assign" << std::endl;
     return *this;
   }
   static void PrettyPrinterCb (const MySmartTag *a, std::ostream &os)