summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerassetstats.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-03-08 17:08:00 -0800
committerRichard Linden <none@none>2013-03-08 17:08:00 -0800
commit4e3fddf271e6ff4557f594b6a8c036ab2a4e413f (patch)
tree44354258589fc5be9dd5db54a27bec8edbc9e630 /indra/newview/llviewerassetstats.cpp
parent4a5f14afc987b645c68705b0313aebbc3ba1d811 (diff)
fixed remaining sample and add calls
Diffstat (limited to 'indra/newview/llviewerassetstats.cpp')
-rw-r--r--indra/newview/llviewerassetstats.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llviewerassetstats.cpp b/indra/newview/llviewerassetstats.cpp
index 0c72c3c5aa..8623af52ff 100644
--- a/indra/newview/llviewerassetstats.cpp
+++ b/indra/newview/llviewerassetstats.cpp
@@ -547,21 +547,21 @@ void record_enqueue(LLViewerAssetType::EType at, bool with_http, bool is_temp)
{
const EViewerAssetCategories eac(asset_type_to_category(at, with_http, is_temp));
- sEnqueued[int(eac)]->add(1);
+ add(*sEnqueued[int(eac)], 1);
}
void record_dequeue(LLViewerAssetType::EType at, bool with_http, bool is_temp)
{
const EViewerAssetCategories eac(asset_type_to_category(at, with_http, is_temp));
- sDequeued[int(eac)]->add(1);
+ add(*sDequeued[int(eac)], 1);
}
void record_response(LLViewerAssetType::EType at, bool with_http, bool is_temp, LLViewerAssetStats::duration_t duration)
{
const EViewerAssetCategories eac(asset_type_to_category(at, with_http, is_temp));
- sResponse[int(eac)]->sample<LLTrace::Microseconds>(duration);
+ sample(*sResponse[int(eac)], LLTrace::Microseconds(duration));
}
void record_avatar_stats()