summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dynamic-array.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/dynamic-array.hpp b/src/dynamic-array.hpp
index 3b87cea..6813edf 100644
--- a/src/dynamic-array.hpp
+++ b/src/dynamic-array.hpp
@@ -190,7 +190,6 @@ template <typename T> inline void DynArray<T>::Reserve(int64_t count) {
if (count > 0) {
return DynArrayReserve(this, count);
}
- this->reservedCount = this->reservedCount > count ? reservedCount : count;
}
template <typename T> inline void DynArray<T>::Resize(int64_t count) {