diff options
author | hop311 <hop3114@gmail.com> | 2023-10-30 00:06:10 +0100 |
---|---|---|
committer | hop311 <hop3114@gmail.com> | 2023-11-07 19:33:33 +0100 |
commit | e91ce707b2c0e80591b9fd1b6a5215e6e6989df8 (patch) | |
tree | 3740e9feb3bfa91b8b02362ed11d1e9f7e67e7c9 /src/openvic-simulation/history/ProvinceHistory.hpp | |
parent | 8a00697a0e6a4168894594eadc373836a1689eea (diff) |
Stop passing Dates by reference
Diffstat (limited to 'src/openvic-simulation/history/ProvinceHistory.hpp')
-rw-r--r-- | src/openvic-simulation/history/ProvinceHistory.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvic-simulation/history/ProvinceHistory.hpp b/src/openvic-simulation/history/ProvinceHistory.hpp index 42dacbf..90c87e2 100644 --- a/src/openvic-simulation/history/ProvinceHistory.hpp +++ b/src/openvic-simulation/history/ProvinceHistory.hpp @@ -56,7 +56,7 @@ namespace OpenVic { bool locked = false; inline bool _load_province_history_entry( - GameManager& game_manager, std::string_view province, Date const& date, ast::NodeCPtr root + GameManager& game_manager, std::string_view province, Date date, ast::NodeCPtr root ); public: |