comparison base/RealTime.cpp @ 806:335c3f922327 qt5

Remove some debug
author Chris Cannam
date Tue, 14 May 2013 12:26:30 +0100
parents 1424aa29ae95
children e802e550a1f2
comparison
equal deleted inserted replaced
805:c379b43935ef 806:335c3f922327
339 div *= 10; 339 div *= 10;
340 } 340 }
341 341
342 out << ":"; 342 out << ":";
343 343
344 std::cerr << "div = " << div << ", f = "<< f << std::endl; 344 // std::cerr << "div = " << div << ", f = "<< f << std::endl;
345 345
346 while (div) { 346 while (div) {
347 int d = (f / div) % 10; 347 int d = (f / div) % 10;
348 out << d; 348 out << d;
349 div /= 10; 349 div /= 10;
350 } 350 }
351 351
352 std::string s = out.str(); 352 std::string s = out.str();
353 353
354 std::cerr << "converted " << toString() << " to " << s << std::endl; 354 // std::cerr << "converted " << toString() << " to " << s << std::endl;
355 355
356 return s; 356 return s;
357 } 357 }
358 358
359 std::string 359 std::string