Mercurial > hg > svcore
comparison base/RealTime.cpp @ 687:06f13a3b9e9e debug-output
Convert many cerrs to DEBUGs
| author | Chris Cannam |
|---|---|
| date | Mon, 16 May 2011 17:19:09 +0100 |
| parents | 75f154085a4d |
| children | 1424aa29ae95 |
comparison
equal
deleted
inserted
replaced
| 686:b4a8d8221eaf | 687:06f13a3b9e9e |
|---|---|
| 240 | 240 |
| 241 int sec = atoi(ssec.c_str()); | 241 int sec = atoi(ssec.c_str()); |
| 242 int nsec = atoi(snsec.c_str()); | 242 int nsec = atoi(snsec.c_str()); |
| 243 if (negative) sec = -sec; | 243 if (negative) sec = -sec; |
| 244 | 244 |
| 245 // std::cerr << "RealTime::fromString: string " << s << " -> " | 245 // DEBUG << "RealTime::fromString: string " << s << " -> " |
| 246 // << sec << " sec, " << nsec << " nsec" << std::endl; | 246 // << sec << " sec, " << nsec << " nsec" << endl; |
| 247 | 247 |
| 248 return RealTime(sec, nsec); | 248 return RealTime(sec, nsec); |
| 249 } | 249 } |
| 250 | 250 |
| 251 std::string | 251 std::string |
