Skip to content

Commit 03ced87

Browse files
committed
Avoid qualifying by inline namespace. Fixes fmtlib#2642.
1 parent e0136fc commit 03ced87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/fmt/core.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ constexpr auto to_string_view(const S& s)
567567
FMT_BEGIN_DETAIL_NAMESPACE
568568

569569
void to_string_view(...);
570-
using fmt::v8::to_string_view;
570+
using fmt::to_string_view;
571571

572572
// Specifies whether S is a string type convertible to fmt::basic_string_view.
573573
// It should be a constexpr function but MSVC 2017 fails to compile it in

0 commit comments

Comments
 (0)