aboutsummaryrefslogtreecommitdiff
path: root/src/game/status_manager.cpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-05-15 19:57:02 +0200
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:59 +0200
commit019337908e37ffee9b624b313e9d7f885bff9781 (patch)
tree7f8ba5e8b12fff7723b1af2317c3fba52c0c7011 /src/game/status_manager.cpp
parent741a6008e806abb8e5aaa8f8fb91827fa97ece9d (diff)
style: change braced list & bracket style
Diffstat (limited to 'src/game/status_manager.cpp')
-rw-r--r--src/game/status_manager.cpp6
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 &section,
- 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 &section,
- const std::string_view &body
-) noexcept
+ const std::string_view &body) noexcept
{
auto section_title_length = _title_lengths[section];