diff options
author | Richard Linden <none@none> | 2012-10-09 18:05:32 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-10-09 18:05:32 -0700 |
commit | f5852ff448c1467c08474061caef44bba3c06f55 (patch) | |
tree | 21097056a11c1b4386eee7f91a266e89dd665457 /indra/llcommon/lltrace.h | |
parent | 960f8764ad2407add941bc8650b295f1e77beb19 (diff) | |
parent | aff9654c1115b4a74fc3ee8f9ca2c2ffa07f8d73 (diff) |
Automated merge with ssh://hg.lindenlab.com/richard/viewer-interesting
Diffstat (limited to 'indra/llcommon/lltrace.h')
-rw-r--r-- | indra/llcommon/lltrace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/lltrace.h b/indra/llcommon/lltrace.h index d83ea77363..e655a3582e 100644 --- a/indra/llcommon/lltrace.h +++ b/indra/llcommon/lltrace.h @@ -353,7 +353,7 @@ namespace LLTrace template<typename UNIT_T> void sample(UNIT_T value) { - base_measurement_t::sample(value.get()); + base_measurement_t::sample(value.value()); } }; @@ -386,7 +386,7 @@ namespace LLTrace template<typename UNIT_T> void add(UNIT_T value) { - getPrimaryAccumulator().add(value.get()); + getPrimaryAccumulator().add(value.value()); } }; |