diff options
author | wvpm <24685035+wvpm@users.noreply.github.com> | 2024-09-18 17:37:44 +0200 |
---|---|---|
committer | wvpm <24685035+wvpm@users.noreply.github.com> | 2024-09-18 17:37:44 +0200 |
commit | 837dfc73574f0328a0987f3f7b96641d39317369 (patch) | |
tree | 90b901887b75cb9c2b61986b24356ebdaca46144 /src/openvic-simulation/pop/Pop.cpp | |
parent | d8c04cbe53188d4717f8c49f918e01657dbf3440 (diff) |
Reduce pop size to int32pop_size_int32
Diffstat (limited to 'src/openvic-simulation/pop/Pop.cpp')
-rw-r--r-- | src/openvic-simulation/pop/Pop.cpp | 4 |
1 files changed, 2 insertions, 2 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 |