From fb289cf56b42629638c096aa0a95a93e7385f510 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 6 Sep 2020 09:26:32 -0700 Subject: [PATCH] Fix coding conventions --- test/color-test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/color-test.cc b/test/color-test.cc index 66b8eab0..30738085 100644 --- a/test/color-test.cc +++ b/test/color-test.cc @@ -90,7 +90,7 @@ TEST(ColorsTest, Format) { } TEST(ColorsTest, FormatToOutAcceptsTextStyle) { - fmt::text_style const ts = fg(fmt::rgb(255, 20, 30)); + fmt::text_style ts = fg(fmt::rgb(255, 20, 30)); std::string out; fmt::format_to(std::back_inserter(out), ts, "rgb(255,20,30){}{}{}", 1, 2, 3);