mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-31 11:17:35 +02:00
Fix ambiguous call
Signed-off-by: Vladislav Shchapov <vladislav@shchapov.ru>
This commit is contained in:
committed by
Victor Zverovich
parent
c710bfa10c
commit
12acd7988b
@ -87,8 +87,8 @@ template <> struct is_char<char32_t> : std::true_type {};
|
|||||||
|
|
||||||
template <typename... T>
|
template <typename... T>
|
||||||
constexpr auto make_wformat_args(T&... args)
|
constexpr auto make_wformat_args(T&... args)
|
||||||
-> decltype(make_format_args<wformat_context>(args...)) {
|
-> decltype(fmt::make_format_args<wformat_context>(args...)) {
|
||||||
return make_format_args<wformat_context>(args...);
|
return fmt::make_format_args<wformat_context>(args...);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline namespace literals {
|
inline namespace literals {
|
||||||
|
Reference in New Issue
Block a user