diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-27 12:34:05 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-27 12:34:05 +0100 |
commit | be6dc84b12c0c12975d8317604e5bff85fa14049 (patch) | |
tree | 8e79762251a307cedbac037ece893cf12b0ef9b2 /indra/llcommon/lldarray.h | |
parent | e5273960de222ffae32405fde8e9fd566ff72d0a (diff) | |
parent | 94bddd2b4450674b9f121a10b97f0846b6a97d87 (diff) |
merge from viewer-public
Diffstat (limited to 'indra/llcommon/lldarray.h')
-rw-r--r-- | indra/llcommon/lldarray.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lldarray.h b/indra/llcommon/lldarray.h index 0e56a11d53..af647c7e7a 100644 --- a/indra/llcommon/lldarray.h +++ b/indra/llcommon/lldarray.h @@ -202,7 +202,7 @@ public: { U32 n = mVector.size(); mIndexMap[k] = n; - mVector.resize(n+1); + mVector.push_back(Type()); llassert(mVector.size() == mIndexMap.size()); return mVector[n]; } |