Skip to content

Commit 12acd79

Browse files
phprusvitaut
authored andcommitted
Fix ambiguous call
Signed-off-by: Vladislav Shchapov <[email protected]>
1 parent c710bfa commit 12acd79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/fmt/xchar.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ template <> struct is_char<char32_t> : std::true_type {};
8787

8888
template <typename... T>
8989
constexpr auto make_wformat_args(T&... args)
90-
-> decltype(make_format_args<wformat_context>(args...)) {
91-
return make_format_args<wformat_context>(args...);
90+
-> decltype(fmt::make_format_args<wformat_context>(args...)) {
91+
return fmt::make_format_args<wformat_context>(args...);
9292
}
9393

9494
inline namespace literals {

0 commit comments

Comments
 (0)