From bc208510c09972cf7ad7e8a5c1cc22c7d31dd512 Mon Sep 17 00:00:00 2001 From: Sven Mikael Persson Date: Mon, 17 Jul 2023 21:39:04 -0400 Subject: [PATCH] Fixed formatting --- include/fmt/core.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 802fcd54..2856a43e 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -538,8 +538,7 @@ constexpr auto to_string_view(const S& s) } // Catch basic_format_string for any char type. template ::value)> -constexpr auto to_string_view(const S& s) - -> decltype(s.get()) { +constexpr auto to_string_view(const S& s) -> decltype(s.get()) { return s.get(); } void to_string_view(...);