Skip to content

Commit

Permalink
Fix ambiguous call
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Shchapov <[email protected]>
  • Loading branch information
phprus authored and vitaut committed Mar 18, 2024
1 parent c710bfa commit 12acd79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/fmt/xchar.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ template <> struct is_char<char32_t> : std::true_type {};

template <typename... T>
constexpr auto make_wformat_args(T&... args)
-> decltype(make_format_args<wformat_context>(args...)) {
return make_format_args<wformat_context>(args...);
-> decltype(fmt::make_format_args<wformat_context>(args...)) {
return fmt::make_format_args<wformat_context>(args...);
}

inline namespace literals {
Expand Down

0 comments on commit 12acd79

Please sign in to comment.