comparison base/RealTime.cpp @ 690:1424aa29ae95

Seems to be a bad idea to use plain DEBUG symbol on OS/X (system wants it)
author Chris Cannam
date Tue, 14 Jun 2011 15:26:52 +0100
parents 06f13a3b9e9e
children 335c3f922327
comparison
equal deleted inserted replaced
689:573d45e9487b 690:1424aa29ae95
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 // DEBUG << "RealTime::fromString: string " << s << " -> " 245 // SVDEBUG << "RealTime::fromString: string " << s << " -> "
246 // << sec << " sec, " << nsec << " nsec" << endl; 246 // << sec << " sec, " << nsec << " nsec" << endl;
247 247
248 return RealTime(sec, nsec); 248 return RealTime(sec, nsec);
249 } 249 }
250 250