diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llcommon/lltracerecording.h | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/indra/llcommon/lltracerecording.h b/indra/llcommon/lltracerecording.h index 4419a22bbe..a7e1606a5a 100644 --- a/indra/llcommon/lltracerecording.h +++ b/indra/llcommon/lltracerecording.h @@ -297,7 +297,7 @@ namespace LLTrace  		}  		template <typename T> -		typename T::value_t getPeriodMin(const TraceType<T>& stat, U32 num_periods = S32_MAX) const +		typename T::value_t getPeriodMin(const TraceType<T>& stat, size_t num_periods = U32_MAX) const  		{  			size_t total_periods = mRecordingPeriods.size();  			num_periods = llmin(num_periods, total_periods); @@ -312,7 +312,7 @@ namespace LLTrace  		}  		template <typename T> -		F64 getPeriodMinPerSec(const TraceType<T>& stat, U32 num_periods = S32_MAX) const +		F64 getPeriodMinPerSec(const TraceType<T>& stat, size_t num_periods = U32_MAX) const  		{  			size_t total_periods = mRecordingPeriods.size();  			num_periods = llmin(num_periods, total_periods); @@ -327,7 +327,7 @@ namespace LLTrace  		}  		template <typename T> -		typename T::value_t getPeriodMax(const TraceType<T>& stat, U32 num_periods = S32_MAX) const +		typename T::value_t getPeriodMax(const TraceType<T>& stat, size_t num_periods = U32_MAX) const  		{  			size_t total_periods = mRecordingPeriods.size();  			num_periods = llmin(num_periods, total_periods); @@ -342,7 +342,7 @@ namespace LLTrace  		}  		template <typename T> -		F64 getPeriodMaxPerSec(const TraceType<T>& stat, U32 num_periods = S32_MAX) const +		F64 getPeriodMaxPerSec(const TraceType<T>& stat, size_t num_periods = U32_MAX) const  		{  			size_t total_periods = mRecordingPeriods.size();  			num_periods = llmin(num_periods, total_periods); @@ -357,7 +357,7 @@ namespace LLTrace  		}  		template <typename T> -		typename T::value_t getPeriodMean(const TraceType<T>& stat, U32 num_periods = S32_MAX) const +		typename T::value_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, U32 num_periods = S32_MAX) const +		typename T::value_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); | 
