summaryrefslogtreecommitdiff
path: root/indra/llcommon/llinstancetracker.h
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-10-17 19:18:53 -0700
committerRichard Linden <none@none>2013-10-17 19:18:53 -0700
commit18aedf0241ba893e12140c0a3855f328d2b4eded (patch)
tree11d95ba4f7578d52e8ab69b35b181f956f4a8590 /indra/llcommon/llinstancetracker.h
parentec178690240a56ffa43b8f37c6b581c9008d3d7d (diff)
fix for assert at runtime (reading stats from recording while it was active)
fix for bad values returns from getPeriodMin and getPeriodMax on count stats when no counts recorded fix for gcc compile time error (typename ftw)
Diffstat (limited to 'indra/llcommon/llinstancetracker.h')
-rwxr-xr-xindra/llcommon/llinstancetracker.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llinstancetracker.h b/indra/llcommon/llinstancetracker.h
index 1385475444..3fdb84cfd7 100755
--- a/indra/llcommon/llinstancetracker.h
+++ b/indra/llcommon/llinstancetracker.h
@@ -215,7 +215,7 @@ private:
{
mInstanceKey = key;
InstanceMap& map = getMap_();
- InstanceMap::iterator insertion_point_it = map.lower_bound(key);
+ typename InstanceMap::iterator insertion_point_it = map.lower_bound(key);
if (ALLOW_KEY_COLLISIONS == InstanceTrackerDisallowKeyCollisions
&& insertion_point_it != map.end()
&& insertion_point_it->first == key)