From 2498e7d6e3f5712b28f2c0cdc267b929e6de09b9 Mon Sep 17 00:00:00 2001 From: Isuru Samarathunga Date: Fri, 31 Oct 2025 17:18:42 +0530 Subject: [PATCH] Fixes --- Src/IACore/imp/inl/IACore/container/dynamic.inl | 1 + 1 file changed, 1 insertion(+) diff --git a/Src/IACore/imp/inl/IACore/container/dynamic.inl b/Src/IACore/imp/inl/IACore/container/dynamic.inl index 55a9acb..5195eeb 100644 --- a/Src/IACore/imp/inl/IACore/container/dynamic.inl +++ b/Src/IACore/imp/inl/IACore/container/dynamic.inl @@ -300,6 +300,7 @@ namespace ia { const auto did_reallocate = reserve(newCount); for(; Base::m_count < newCount; Base::m_count++) Base::m_allocator.construct(&Base::m_data[Base::m_count]); + Base::m_count = newCount; return did_reallocate; }