aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author wvpm <24685035+wvpm@users.noreply.github.com>2024-09-18 22:04:12 +0200
committer GitHub <noreply@github.com>2024-09-18 22:04:12 +0200
commitf0814926f675d6ecf889d8add410b1c37f625b29 (patch)
treea6875ab4102e978500cf5d4a438ebfd654bc5574
parent2069be1f1948a3b532536c640ff2baf80e9e1145 (diff)
parent837dfc73574f0328a0987f3f7b96641d39317369 (diff)
Merge pull request #199 from OpenVicProject/pop_size_int32HEADmaster
Reduce pop size to int32
-rw-r--r--src/openvic-simulation/pop/Pop.cpp4
-rw-r--r--src/openvic-simulation/pop/Pop.hpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/openvic-simulation/pop/Pop.cpp b/src/openvic-simulation/pop/Pop.cpp
index 9221485..cde7013 100644
--- a/src/openvic-simulation/pop/Pop.cpp
+++ b/src/openvic-simulation/pop/Pop.cpp
@@ -642,8 +642,8 @@ bool PopManager::load_pop_bases_into_vector(
*non_integer_size = true;
}
- if (culture != nullptr && religion != nullptr && size >= 1) {
- vec.emplace_back(PopBase { type, *culture, *religion, size.to_int64_t(), militancy, consciousness, rebel_type });
+ if (culture != nullptr && religion != nullptr && size >= 1 && size <= std::numeric_limits<Pop::pop_size_t>::max()) {
+ vec.emplace_back(PopBase { type, *culture, *religion, size.to_int32_t(), militancy, consciousness, rebel_type });
} else {
Logger::warning(
"Some pop arguments are invalid: culture = ", culture, ", religion = ", religion, ", size = ", size
diff --git a/src/openvic-simulation/pop/Pop.hpp b/src/openvic-simulation/pop/Pop.hpp
index e8cab42..59a7794 100644
--- a/src/openvic-simulation/pop/Pop.hpp
+++ b/src/openvic-simulation/pop/Pop.hpp
@@ -32,7 +32,7 @@ namespace OpenVic {
struct PopBase {
friend struct PopManager;
- using pop_size_t = int64_t;
+ using pop_size_t = int32_t;
protected:
PopType const& PROPERTY_ACCESS(type, protected);