diff options
| author | Dave Parks <davep@lindenlab.com> | 2012-10-11 17:02:45 -0500 |
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2012-10-11 17:02:45 -0500 |
| commit | 7ebbb5067db4e1fc32a0e60449b52e3c110f3207 (patch) | |
| tree | 2eeb91836c2f111da6cab3503dbad220ce282dda /indra/newview/llspatialpartition.h | |
| parent | 6c989a692d9b1efd0b76fae9776d8bbe876c2900 (diff) | |
MAINT-1709 Factor out realloc
Reviewed by VoidPointer
Diffstat (limited to 'indra/newview/llspatialpartition.h')
| -rw-r--r-- | indra/newview/llspatialpartition.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/llspatialpartition.h b/indra/newview/llspatialpartition.h index f050df2b39..d3252fe26a 100644 --- a/indra/newview/llspatialpartition.h +++ b/indra/newview/llspatialpartition.h @@ -567,10 +567,10 @@ class LLCullResult public: LLCullResult(); - typedef LLSpatialGroup** sg_list_t; - typedef LLDrawable** drawable_list_t; - typedef LLSpatialBridge** bridge_list_t; - typedef LLDrawInfo** drawinfo_list_t; + typedef std::vector<LLSpatialGroup*> sg_list_t; + typedef std::vector<LLDrawable*> drawable_list_t; + typedef std::vector<LLSpatialBridge*> bridge_list_t; + typedef std::vector<LLDrawInfo*> drawinfo_list_t; typedef LLSpatialGroup** sg_iterator; typedef LLSpatialBridge** bridge_iterator; @@ -620,7 +620,7 @@ public: private: - void pushBack(void** &head, U32& count, void* val); + template <class T, class V> void pushBack(T &head, U32& count, V* val); U32 mVisibleGroupsSize; U32 mAlphaGroupsSize; |
