diff options
author | Richard Linden <none@none> | 2013-08-23 09:49:11 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-08-23 09:49:11 -0700 |
commit | 258bdb10a44c77636f79ba5289e1f86e23b6925d (patch) | |
tree | bcf063ebcd53a91cbda7184c485b0a4dce5090dd /indra/llcommon/lltraceaccumulators.cpp | |
parent | c95d0b884371045a46c345d43fab90b5f3d6ccb2 (diff) | |
parent | 049317fc6442e8b2c2d93309a9d759aa063d2010 (diff) |
Automated merge with https://bitbucket.org/lindenlab/viewer-interesting
Diffstat (limited to 'indra/llcommon/lltraceaccumulators.cpp')
-rw-r--r-- | indra/llcommon/lltraceaccumulators.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lltraceaccumulators.cpp b/indra/llcommon/lltraceaccumulators.cpp index 5e25ad6b26..42f075a7cb 100644 --- a/indra/llcommon/lltraceaccumulators.cpp +++ b/indra/llcommon/lltraceaccumulators.cpp @@ -192,7 +192,7 @@ void SampleAccumulator::reset( const SampleAccumulator* other ) mMin = mLastValue; mMax = mLastValue; mMean = mLastValue; - LL_ERRS_IF(mHasValue && !(mMean < 0) && !(mMean >= 0)) << "Invalid mean after capturing value" << LL_ENDL; + llassert(!mHasValue || mMean < 0 || mMean >= 0); mSumOfSquares = 0; mLastSampleTimeStamp = LLTimer::getTotalSeconds(); mTotalSamplingTime = 0; |