remove debugging output from tests

Mathieu Lacage 2007-04-19 11:00:18 +02:00
parent 48dee43f04
commit 7f228cc6f4
1 changed files with 4 additions and 4 deletions

View File

@ -245,19 +245,19 @@ class MySmartTag
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)