Bug 90906 Remove unused variables p=gautheri@noos.fr r/sr=roc

git-svn-id: svn://10.0.0.236/trunk@150571 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
neil%parkwaycc.co.uk
2003-12-20 18:10:22 +00:00
parent 5b654e42cb
commit aebefbf759

View File

@@ -266,12 +266,11 @@ void Stopwatch::Print(void) {
realt -= min * 60000;
int sec = int(realt/1000);
realt -= sec * 1000;
int ms = int(realt);
#ifdef MOZ_PERF_METRICS
int ms = int(realt);
RAPTOR_STOPWATCH_TRACE(("Real time %d:%d:%d.%d, CP time %.3f\n", hours, min, sec, ms, CpuTime()));
#elif defined(DEBUG)
int ms = int(realt);
printf("Real time %d:%d:%d.%d, CP time %.3f\n", hours, min, sec, ms, CpuTime());
#endif
}