diff options
author | Richard Nelson <richard@lindenlab.com> | 2011-07-27 13:11:09 -0700 |
---|---|---|
committer | Richard Nelson <richard@lindenlab.com> | 2011-07-27 13:11:09 -0700 |
commit | 061e9efd3e7b7426c69d0f57447722a3aa321d96 (patch) | |
tree | ec8c70773b1d5caa08da899cd1783d6737a8e4f1 /indra/llcommon | |
parent | 7a43d38eaa7fc9bcdaaf21a0f915cc44bb7d3778 (diff) |
broken operator= semantics for instance tracker iterators
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llinstancetracker.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/indra/llcommon/llinstancetracker.h b/indra/llcommon/llinstancetracker.h index 78a67653c8..3c3b40f66f 100644 --- a/indra/llcommon/llinstancetracker.h +++ b/indra/llcommon/llinstancetracker.h @@ -69,12 +69,6 @@ public: --sIterationNestDepth; } - instance_iter& operator =(const instance_iter& other) - { - mIterator = other.mIterator; - ++sIterationNestDepth; - super_t::operator=(other); - } private: friend class boost::iterator_core_access; @@ -110,13 +104,6 @@ public: ++sIterationNestDepth; } - key_iter& operator =(const key_iter& other) - { - mIterator = other.mIterator; - ++sIterationNestDepth; - super_t::operator=(other); - } - ~key_iter() { --sIterationNestDepth; |