- fixed TArray's Append methods.

I mistakenly assumed that Grow would incease the array's reserved space.
This commit is contained in:
Christoph Oelckers 2018-11-18 01:23:14 +01:00
parent 983c0c56b1
commit 292cf93fa7
1 changed files with 2 additions and 0 deletions

View File

@ -283,6 +283,7 @@ public:
unsigned start = Count;
Grow(item.Size());
Count += item.Size();
for (unsigned i = 0; i < item.Size(); i++)
{
@ -296,6 +297,7 @@ public:
unsigned start = Count;
Grow(item.Size());
Count += item.Size();
for (unsigned i = 0; i < item.Size(); i++)
{