aboutsummaryrefslogtreecommitdiff
path: root/src/util/color.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/util/color.cpp
parent741a6008e806abb8e5aaa8f8fb91827fa97ece9d (diff)
style: change braced list & bracket style
Diffstat (limited to 'src/util/color.cpp')
-rw-r--r--src/util/color.cpp6
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()};
}