diff options
author | Richard Linden <none@none> | 2013-04-12 16:34:38 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-04-12 16:34:38 -0700 |
commit | 08b061dc1d9bfef8fc36ac25f260b291adda6d8c (patch) | |
tree | c7bbc177394d840993b5573debef22ccdef5edb5 | |
parent | 39d8ea6327ad96b4977dfec991a20d66e2442b50 (diff) |
BUILDFIX: attempted gcc fix
-rw-r--r-- | indra/llcommon/lltracerecording.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/lltracerecording.h b/indra/llcommon/lltracerecording.h index 511db0e115..8a278d80b0 100644 --- a/indra/llcommon/lltracerecording.h +++ b/indra/llcommon/lltracerecording.h @@ -357,7 +357,7 @@ namespace LLTrace } template <typename T> - typename T::value_t getPeriodMean(const TraceType<T>& stat, size_t num_periods = U32_MAX) const + typename T::mean_t getPeriodMean(const TraceType<T>& stat, size_t num_periods = U32_MAX) const { size_t total_periods = mRecordingPeriods.size(); num_periods = llmin(num_periods, total_periods); @@ -378,7 +378,7 @@ namespace LLTrace } template <typename T> - typename T::value_t getPeriodMeanPerSec(const TraceType<T>& stat, size_t num_periods = U32_MAX) const + typename T::mean_t getPeriodMeanPerSec(const TraceType<T>& stat, size_t num_periods = U32_MAX) const { size_t total_periods = mRecordingPeriods.size(); num_periods = llmin(num_periods, total_periods); |