diff options
-rw-r--r-- | common/array.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/array.h b/common/array.h index 9b94709f1d..6f8e7da579 100644 --- a/common/array.h +++ b/common/array.h @@ -179,7 +179,7 @@ public: delete[] _storage; _size = array._size; - _capacity = _size + 32; + _capacity = _size; _storage = new T[_capacity]; assert(_storage); copy(array._storage, array._storage + _size, _storage); |