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/util/color.cpp | |
parent | 741a6008e806abb8e5aaa8f8fb91827fa97ece9d (diff) |
style: change braced list & bracket style
Diffstat (limited to 'src/util/color.cpp')
-rw-r--r-- | src/util/color.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/util/color.cpp b/src/util/color.cpp index 8f23f41..8ec3ad4 100644 --- a/src/util/color.cpp +++ b/src/util/color.cpp @@ -5,13 +5,11 @@ auto get_foreground_esc_seq(const uint32_t &color) noexcept -> std::string { return { - fmt::detail::make_foreground_color<char>(fmt::detail::color_type(color)).begin() - }; + fmt::detail::make_foreground_color<char>(fmt::detail::color_type(color)).begin()}; } auto get_background_esc_seq(const uint32_t &color) noexcept -> std::string { return { - fmt::detail::make_background_color<char>(fmt::detail::color_type(color)).begin() - }; + fmt::detail::make_background_color<char>(fmt::detail::color_type(color)).begin()}; } |