Skip to content
Snippets Groups Projects
Commit 243210e0 authored by Vadim ProductEngine's avatar Vadim ProductEngine
Browse files

STORM-419 FIXED <anonymous>' is used uninitialized in this function in lldarray.h

Author: Robin Cornelius
Ported by: Techwolf Lupindo
Reviewed by: Merov Linden
parent cbb184d9
No related branches found
No related tags found
No related merge requests found
...@@ -529,6 +529,7 @@ Pf Shan ...@@ -529,6 +529,7 @@ Pf Shan
CT-230 CT-230
CT-231 CT-231
CT-321 CT-321
SNOW-422
princess niven princess niven
VWR-5733 VWR-5733
CT-85 CT-85
...@@ -643,6 +644,7 @@ Strife Onizuka ...@@ -643,6 +644,7 @@ Strife Onizuka
VWR-183 VWR-183
VWR-2265 VWR-2265
VWR-4111 VWR-4111
SNOW-691
Tayra Dagostino Tayra Dagostino
SNOW-517 SNOW-517
SNOW-543 SNOW-543
......
...@@ -51,7 +51,7 @@ class LLDynamicArray : public std::vector<Type> ...@@ -51,7 +51,7 @@ class LLDynamicArray : public std::vector<Type>
LLDynamicArray(S32 size=0) : std::vector<Type>(size) { if (size < BlockSize) std::vector<Type>::reserve(BlockSize); } LLDynamicArray(S32 size=0) : std::vector<Type>(size) { if (size < BlockSize) std::vector<Type>::reserve(BlockSize); }
void reset() { std::vector<Type>::resize(0); } void reset() { std::vector<Type>::clear(); }
// ACCESSORS // ACCESSORS
const Type& get(S32 index) const { return std::vector<Type>::operator[](index); } const Type& get(S32 index) const { return std::vector<Type>::operator[](index); }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment