Unverified Commit 3a951a66 authored by Marek Kurdej's avatar Marek Kurdej Committed by GitHub

Avoid qualifying by inline namespace. Fixes #2642. (#2643)

parent e0136fc8
...@@ -567,7 +567,7 @@ constexpr auto to_string_view(const S& s) ...@@ -567,7 +567,7 @@ constexpr auto to_string_view(const S& s)
FMT_BEGIN_DETAIL_NAMESPACE FMT_BEGIN_DETAIL_NAMESPACE
void to_string_view(...); 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. // 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 // It should be a constexpr function but MSVC 2017 fails to compile it in
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment