From 5a15ec5781550f322625719ff7da9b22430dcd62 Mon Sep 17 00:00:00 2001 From: Charles Milette Date: Fri, 11 Nov 2022 00:11:54 -0500 Subject: [PATCH] What am I doing --- include/spdlog/details/fmt_helper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/spdlog/details/fmt_helper.h b/include/spdlog/details/fmt_helper.h index a056500f..8f6396bf 100644 --- a/include/spdlog/details/fmt_helper.h +++ b/include/spdlog/details/fmt_helper.h @@ -40,13 +40,13 @@ inline spdlog::wstring_view_t to_string_view(spdlog::wstring_view_t str) SPDLOG_ #endif #ifndef SPDLOG_USE_STD_FORMAT -template +template inline fmt::basic_string_view to_string_view(fmt::basic_format_string fmt) { return fmt; } #elif __cpp_lib_format >= 202207L -template +template SPDLOG_CONSTEXPR_FUNC std::basic_string_view to_string_view(std::basic_format_string fmt) SPDLOG_NOEXCEPT { return fmt.get();