diff options
Diffstat (limited to 'src/game/status_manager.cpp')
-rw-r--r-- | src/game/status_manager.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/game/status_manager.cpp b/src/game/status_manager.cpp index 727452c..927f645 100644 --- a/src/game/status_manager.cpp +++ b/src/game/status_manager.cpp @@ -18,8 +18,7 @@ StatusManager::StatusManager(std::shared_ptr<IStatusLine> statusline) noexcept void StatusManager::set_section_title( const StatusLineSection §ion, - const std::string_view &title -) noexcept + const std::string_view &title) noexcept { if (_title_lengths.count(section) != 0) { @@ -34,8 +33,7 @@ void StatusManager::set_section_title( void StatusManager::set_section_body( const StatusLineSection §ion, - const std::string_view &body -) noexcept + const std::string_view &body) noexcept { auto section_title_length = _title_lengths[section]; |