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/pop/Culture.hpp | |
parent | 6b3d2315225468e03bef30e942263fe9b8fc06fa (diff) |
Changed return types to std::string_view
Diffstat (limited to 'src/openvic-simulation/pop/Culture.hpp')
-rw-r--r-- | src/openvic-simulation/pop/Culture.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvic-simulation/pop/Culture.hpp b/src/openvic-simulation/pop/Culture.hpp index b6b4952..d36a90b 100644 --- a/src/openvic-simulation/pop/Culture.hpp +++ b/src/openvic-simulation/pop/Culture.hpp @@ -31,7 +31,7 @@ namespace OpenVic { public: CultureGroup(CultureGroup&&) = default; - std::string const& get_leader() const; + std::string_view get_leader() const; GraphicalCultureType const& get_unit_graphical_culture_type() const; bool get_is_overseas() const; }; |