diff options
author | Richard Linden <none@none> | 2012-10-09 18:02:47 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-10-09 18:02:47 -0700 |
commit | aff9654c1115b4a74fc3ee8f9ca2c2ffa07f8d73 (patch) | |
tree | 4cbd07cad7b3d912324aee7513fb5462bab9d13b /indra/llcommon/lltrace.h | |
parent | 3960fdf9e01619ddfd7903bcdd8d894f432752d0 (diff) |
SH-3275 WIP Update viewer metrics system to be more flexible
added PeriodicRecorder class for frame by frame stats accumulation
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()); } }; |