Removed some debug cout

This commit is contained in:
Paolo Cignoni 2011-12-16 09:28:36 +00:00
parent 4970401d03
commit 85e58b7915
1 changed files with 0 additions and 2 deletions

View File

@ -14,13 +14,11 @@ public:
atomicInt() atomicInt()
{ {
_q_value = 0; _q_value = 0;
std::cout << "atomicInt init a 0\n";
} }
atomicInt( int value ) atomicInt( int value )
{ {
_q_value = value; _q_value = value;
std::cout << "atomicInt init a " << _q_value << std::endl;
} }
// atomic API // atomic API