summaryrefslogtreecommitdiff
path: root/indra/llcommon/llmetricperformancetester.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-10-23 13:24:47 -0700
committerRichard Linden <none@none>2013-10-23 13:24:47 -0700
commitab43be5ddb50198304de1ae0e82b641c7d343449 (patch)
treee6a54d948e4abff50d025016d7e869b8da1b5d00 /indra/llcommon/llmetricperformancetester.cpp
parente06ad3d60f944911f7bb30a9e362e39a5042a40b (diff)
moved some common functionality from LLTrace::BlockTimerStatHandle to BlockTimer
updates appearance utility dependency
Diffstat (limited to 'indra/llcommon/llmetricperformancetester.cpp')
-rwxr-xr-xindra/llcommon/llmetricperformancetester.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llmetricperformancetester.cpp b/indra/llcommon/llmetricperformancetester.cpp
index 7963485456..1fc821d9a9 100755
--- a/indra/llcommon/llmetricperformancetester.cpp
+++ b/indra/llcommon/llmetricperformancetester.cpp
@@ -91,7 +91,7 @@ LLMetricPerformanceTesterBasic* LLMetricPerformanceTesterBasic::getTester(std::s
// Return TRUE if this metric is requested or if the general default "catch all" metric is requested
BOOL LLMetricPerformanceTesterBasic::isMetricLogRequested(std::string name)
{
- return (LLTrace::BlockTimerStatHandle::sMetricLog && ((LLTrace::BlockTimerStatHandle::sLogName == name) || (LLTrace::BlockTimerStatHandle::sLogName == DEFAULT_METRIC_NAME)));
+ return (LLTrace::BlockTimer::sMetricLog && ((LLTrace::BlockTimer::sLogName == name) || (LLTrace::BlockTimer::sLogName == DEFAULT_METRIC_NAME)));
}
/*static*/
@@ -194,7 +194,7 @@ void LLMetricPerformanceTesterBasic::preOutputTestResults(LLSD* sd)
void LLMetricPerformanceTesterBasic::postOutputTestResults(LLSD* sd)
{
- LLTrace::BlockTimerStatHandle::pushLog(*sd);
+ LLTrace::BlockTimer::pushLog(*sd);
}
void LLMetricPerformanceTesterBasic::outputTestResults()