diff options
author | Oz Linden <oz@lindenlab.com> | 2012-08-15 22:38:07 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2012-08-15 22:38:07 -0400 |
commit | 7204593ec3f6fca63c32bcb8cdcf9c356165d24e (patch) | |
tree | 2896e08c5c0e6d98015edd140874f681891562e1 /indra/llcommon/llstat.h | |
parent | b9e43dfd646990be236e44814ce3199de3391dc1 (diff) | |
parent | 75a3183ad778cf2b7e2ed343345a82e3c0202ab0 (diff) |
merge back beta fixes
Diffstat (limited to 'indra/llcommon/llstat.h')
-rw-r--r-- | indra/llcommon/llstat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llcommon/llstat.h b/indra/llcommon/llstat.h index b877432e86..1a8404cc07 100644 --- a/indra/llcommon/llstat.h +++ b/indra/llcommon/llstat.h @@ -263,9 +263,9 @@ class LL_COMMON_API LLStat { private: typedef std::multimap<std::string, LLStat*> stat_map_t; - static stat_map_t sStatList; void init(); + static stat_map_t& getStatList(); public: LLStat(U32 num_bins = 32, BOOL use_frame_timer = FALSE); @@ -342,8 +342,8 @@ public: static LLStat* getStat(const std::string& name) { // return the first stat that matches 'name' - stat_map_t::iterator iter = sStatList.find(name); - if (iter != sStatList.end()) + stat_map_t::iterator iter = getStatList().find(name); + if (iter != getStatList().end()) return iter->second; else return NULL; |