diff options
author | Hop311 <Hop3114@gmail.com> | 2024-01-24 01:47:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 01:47:16 +0100 |
commit | 6bcb1e70a15755ceb0aaa13a080f85f8edb50911 (patch) | |
tree | b30e9b5774130552fe97e27deaf0370d83920c43 /src/openvic-simulation/military/Wargoal.cpp | |
parent | d4e597da089a81f719a9c33b46111d1c2c590124 (diff) | |
parent | 268a6948c0400905dfc335427395519689f067f5 (diff) |
Merge pull request #137 from OpenVicProject/reserve_more
Added reserve_more, expect_dictionary_key[s|_map]_reserve_length[_and_default]
Diffstat (limited to 'src/openvic-simulation/military/Wargoal.cpp')
-rw-r--r-- | src/openvic-simulation/military/Wargoal.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/openvic-simulation/military/Wargoal.cpp b/src/openvic-simulation/military/Wargoal.cpp index 4045fa5..e81eaa0 100644 --- a/src/openvic-simulation/military/Wargoal.cpp +++ b/src/openvic-simulation/military/Wargoal.cpp @@ -69,7 +69,8 @@ bool WargoalTypeManager::add_wargoal_type( } bool WargoalTypeManager::load_wargoal_file(ast::NodeCPtr root) { - bool ret = expect_dictionary( + bool ret = expect_dictionary_reserve_length( + wargoal_types, [this](std::string_view identifier, ast::NodeCPtr value) -> bool { if (identifier == "peace_order") { return true; |