diff options
author | hop311 <hop3114@gmail.com> | 2023-10-13 00:43:10 +0200 |
---|---|---|
committer | hop311 <hop3114@gmail.com> | 2023-10-13 00:43:10 +0200 |
commit | d95c3c9da75018e3e959e5493ebd9c520e00bf7a (patch) | |
tree | 4ad745778dea488ad10509cf17d349c3ef0cc229 /src/openvic-simulation/politics/Government.hpp | |
parent | 6b3d2315225468e03bef30e942263fe9b8fc06fa (diff) |
Changed return types to std::string_view
Diffstat (limited to 'src/openvic-simulation/politics/Government.hpp')
-rw-r--r-- | src/openvic-simulation/politics/Government.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvic-simulation/politics/Government.hpp b/src/openvic-simulation/politics/Government.hpp index c72dae6..ba8496f 100644 --- a/src/openvic-simulation/politics/Government.hpp +++ b/src/openvic-simulation/politics/Government.hpp @@ -24,7 +24,7 @@ namespace OpenVic { bool holds_elections() const; bool can_appoint_ruling_party() const; Timespan get_term_duration() const; - std::string const& get_flag_type() const; + std::string_view get_flag_type() const; }; struct GovernmentTypeManager { |