Fix ambiguous call

Signed-off-by: Vladislav Shchapov <vladislav@shchapov.ru>
This commit is contained in:
Vladislav Shchapov
2024-03-17 20:45:27 +05:00
committed by Victor Zverovich
parent c710bfa10c
commit 12acd7988b

View File

@ -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 {