From 268a6948c0400905dfc335427395519689f067f5 Mon Sep 17 00:00:00 2001 From: hop311 Date: Mon, 22 Jan 2024 20:02:58 +0000 Subject: Added reserve_more, expect_dictionary_key[s|_map]_reserve_length[_and_default] --- src/openvic-simulation/history/CountryHistory.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/openvic-simulation/history/CountryHistory.cpp') diff --git a/src/openvic-simulation/history/CountryHistory.cpp b/src/openvic-simulation/history/CountryHistory.cpp index 3b4dfd8..5ee5e38 100644 --- a/src/openvic-simulation/history/CountryHistory.cpp +++ b/src/openvic-simulation/history/CountryHistory.cpp @@ -180,6 +180,14 @@ bool CountryHistoryMap::_load_history_entry( )(root); } +void CountryHistoryManager::reserve_more_country_histories(size_t size) { + if (locked) { + Logger::error("Failed to reserve space for ", size, " countries in CountryHistoryManager - already locked!"); + } else { + reserve_more(country_histories, size); + } +} + void CountryHistoryManager::lock_country_histories() { Logger::info("Locked country history registry after registering ", country_histories.size(), " items"); locked = true; -- cgit v1.2.3-56-ga3b1