summaryrefslogtreecommitdiff
path: root/indra/llcommon/llfasttimer.h
diff options
context:
space:
mode:
authorRichard Linden <none@none>2012-08-30 18:35:29 -0700
committerRichard Linden <none@none>2012-08-30 18:35:29 -0700
commitafc2807302f2a94b5cbb0fe86f304984ac7e50b8 (patch)
treefe3984d5de892c7a1bf726d32f45dbaeeebf7397 /indra/llcommon/llfasttimer.h
parent5a03b8282da64433c2525f0950e8fb86995f66dc (diff)
MAINT-1486 FIX Crash on login (Unhandled exception)
cleaner implementation of llfasttimers...don't bother to share similarly named timers just create multiple timers with same name...doesn't break anything
Diffstat (limited to 'indra/llcommon/llfasttimer.h')
-rw-r--r--indra/llcommon/llfasttimer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llcommon/llfasttimer.h b/indra/llcommon/llfasttimer.h
index e42e549df5..b3f7304664 100644
--- a/indra/llcommon/llfasttimer.h
+++ b/indra/llcommon/llfasttimer.h
@@ -145,6 +145,7 @@ public:
DeclareTimer(const std::string& name);
NamedTimer& getNamedTimer() { return mTimer; }
+ const NamedTimer& getNamedTimer() const { return mTimer; }
private:
FrameState mFrameState;