diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-15 19:57:02 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:59 +0200 |
commit | 019337908e37ffee9b624b313e9d7f885bff9781 (patch) | |
tree | 7f8ba5e8b12fff7723b1af2317c3fba52c0c7011 /src/game/status_manager.cpp | |
parent | 741a6008e806abb8e5aaa8f8fb91827fa97ece9d (diff) |
style: change braced list & bracket style
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]; |