diff options
author | Richard Linden <none@none> | 2013-04-12 14:25:40 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-04-12 14:25:40 -0700 |
commit | 54d7fc95893d1bf8cc3b6ebe94f3bf37f40125d0 (patch) | |
tree | 5c3658ef6147cde0cb937b81e0d8f50cf10a0e48 /indra/llcommon/lltrace.h | |
parent | f964c8faa84cfa95bbf73552e99a2d0b80f7bee2 (diff) |
BUILDFIX: attempted gcc fix
Diffstat (limited to 'indra/llcommon/lltrace.h')
-rw-r--r-- | indra/llcommon/lltrace.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llcommon/lltrace.h b/indra/llcommon/lltrace.h index 376248c87a..d1edaf969b 100644 --- a/indra/llcommon/lltrace.h +++ b/indra/llcommon/lltrace.h @@ -264,6 +264,7 @@ class MeasurementAccumulator { public: typedef T value_t; + typedef F64 mean_t; typedef MeasurementAccumulator<T> self_t; MeasurementAccumulator() @@ -380,6 +381,7 @@ class CountAccumulator public: typedef CountAccumulator<T> self_t; typedef T value_t; + typedef F64 mean_t; CountAccumulator() : mSum(0), @@ -418,17 +420,20 @@ class TimeBlockAccumulator { public: typedef LLUnit<LLUnits::Seconds, F64> value_t; + typedef LLUnit<LLUnits::Seconds, F64> mean_t; typedef TimeBlockAccumulator self_t; // fake class that allows us to view call count aspect of timeblock accumulator struct CallCountAspect { typedef U32 value_t; + typedef F32 mean_t; }; struct SelfTimeAspect { typedef LLUnit<LLUnits::Seconds, F64> value_t; + typedef LLUnit<LLUnits::Seconds, F64> mean_t; }; TimeBlockAccumulator(); |