From 6299224e3f89fb07628435103f0b4a2b1dd3fb6e Mon Sep 17 00:00:00 2001 From: wvpm <24685035+wvpm@users.noreply.github.com> Date: Sun, 19 Oct 2025 13:48:48 +0200 Subject: [PATCH] Expose capacity on ValueHistory --- src/openvic-simulation/types/ValueHistory.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openvic-simulation/types/ValueHistory.hpp b/src/openvic-simulation/types/ValueHistory.hpp index 24fd4c0c1..b931d4e94 100644 --- a/src/openvic-simulation/types/ValueHistory.hpp +++ b/src/openvic-simulation/types/ValueHistory.hpp @@ -23,6 +23,7 @@ namespace OpenVic { using typename base_type::difference_type; using base_type::operator[]; using base_type::size; + using base_type::capacity; using base_type::empty; using base_type::begin; using base_type::end;