From 12acd7988b5eef3df060f321f61982221ec45d26 Mon Sep 17 00:00:00 2001 From: Vladislav Shchapov Date: Sun, 17 Mar 2024 20:45:27 +0500 Subject: [PATCH] Fix ambiguous call Signed-off-by: Vladislav Shchapov --- include/fmt/xchar.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/xchar.h b/include/fmt/xchar.h index 1e787508..61a4b54f 100644 --- a/include/fmt/xchar.h +++ b/include/fmt/xchar.h @@ -87,8 +87,8 @@ template <> struct is_char : std::true_type {}; template constexpr auto make_wformat_args(T&... args) - -> decltype(make_format_args(args...)) { - return make_format_args(args...); + -> decltype(fmt::make_format_args(args...)) { + return fmt::make_format_args(args...); } inline namespace literals {