From 49d12400a7df2e6ce23a9194b5a0ef63009eee4b Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Wed, 22 Nov 2023 15:26:49 -0500 Subject: DynArray - dead code in Reserve function --- src/dynamic-array.hpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/dynamic-array.hpp') 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 inline void DynArray::Reserve(int64_t count) { if (count > 0) { return DynArrayReserve(this, count); } - this->reservedCount = this->reservedCount > count ? reservedCount : count; } template inline void DynArray::Resize(int64_t count) { -- cgit v1.2.3