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 | cdbfdfc351a51f4fe0c264110cf68a59f0859f04 (patch) | |
tree | a8944dacc7f9fc07eaad0698684c559749660967 /indra/newview/llspatialpartition.h | |
parent | 1743e6a81330824021667000f8acdd6cf64dbf1b (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 e63037b4a8..b1706d9d35 100644 --- a/indra/newview/llspatialpartition.h +++ b/indra/newview/llspatialpartition.h @@ -569,10 +569,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; @@ -622,7 +622,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; |