diff options
author | Richard Linden <none@none> | 2012-12-06 00:37:15 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-12-06 00:37:15 -0800 |
commit | 60800dacdd7e9b66ed654af471f2b9e9680cd981 (patch) | |
tree | f71a65d1ab8a4d277a1ccbd109d852fcc00cba13 /indra/llcommon/lltracerecording.cpp | |
parent | 68967e7b2b9416ff66cb49ae755fb33d7b81d129 (diff) |
SH-3406 WIP convert fast timers to lltrace system
fixed gcc compile error
made LLCopyOnWritePointer contain an LLPointer, not derive from it
added type trait to control periodicrecording mean value type
Diffstat (limited to 'indra/llcommon/lltracerecording.cpp')
-rw-r--r-- | indra/llcommon/lltracerecording.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lltracerecording.cpp b/indra/llcommon/lltracerecording.cpp index 7ed7e57570..e9b3376dae 100644 --- a/indra/llcommon/lltracerecording.cpp +++ b/indra/llcommon/lltracerecording.cpp @@ -49,7 +49,7 @@ Recording::Recording() Recording::Recording( const Recording& other ) { - llassert(other.mCountsFloat.get() != NULL); + llassert(other.mCountsFloat.notNull()); mSamplingTimer = other.mSamplingTimer; mElapsedSeconds = other.mElapsedSeconds; mCountsFloat = other.mCountsFloat; |