diff options
author | Richard Linden <none@none> | 2012-11-12 19:12:20 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-11-12 19:12:20 -0800 |
commit | c76ed72c609b80b08df6cebd68274c9da6d3de2c (patch) | |
tree | 7e78c53d7e49caf46b5a7ed6c7eca26fd3b8c78c /indra/llcommon/llfasttimer.cpp | |
parent | a3e3e8b4ccd96e98da73acf1c584bbfa5a8b2b56 (diff) |
SH-3406 WIP convert fast timers to lltrace system
removed remnants of LLFastTimer::FrameState
Diffstat (limited to 'indra/llcommon/llfasttimer.cpp')
-rw-r--r-- | indra/llcommon/llfasttimer.cpp | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/indra/llcommon/llfasttimer.cpp b/indra/llcommon/llfasttimer.cpp index c4839fed77..66452fd02a 100644 --- a/indra/llcommon/llfasttimer.cpp +++ b/indra/llcommon/llfasttimer.cpp @@ -140,15 +140,6 @@ U64 LLFastTimer::countsPerSecond() // counts per second for the *32-bit* timer } #endif -LLFastTimer::FrameState::FrameState() -: mActiveCount(0), - mCalls(0), - mSelfTimeCounter(0), - mLastCaller(NULL), - mMoveUpTree(false) -{} - - LLFastTimer::DeclareTimer::DeclareTimer(const std::string& name, bool open, DeclareTimer* parent) : mName(name), mCollapsed(true), @@ -156,7 +147,12 @@ LLFastTimer::DeclareTimer::DeclareTimer(const std::string& name, bool open, Decl mTreeTimeCounter(0), mCountAverage(0), mCallAverage(0), - mNeedsSorting(false) + mNeedsSorting(false), + mActiveCount(0), + mCalls(0), + mSelfTimeCounter(0), + mLastCaller(NULL), + mMoveUpTree(false) { setCollapsed(!open); |