From 3a951a66cb0fb53ff5a9d5ce9c77e05ef9d382ce Mon Sep 17 00:00:00 2001 From: Marek Kurdej Date: Fri, 10 Dec 2021 17:28:25 +0100 Subject: [PATCH] Avoid qualifying by inline namespace. Fixes #2642. (#2643) --- include/fmt/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index aad37683..9e0e8964 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -567,7 +567,7 @@ constexpr auto to_string_view(const S& s) FMT_BEGIN_DETAIL_NAMESPACE void to_string_view(...); -using fmt::v8::to_string_view; +using fmt::to_string_view; // Specifies whether S is a string type convertible to fmt::basic_string_view. // It should be a constexpr function but MSVC 2017 fails to compile it in