From e0136fc8bd48f72d29d9276437a3bdca357789e0 Mon Sep 17 00:00:00 2001 From: Marek Kurdej Date: Fri, 10 Dec 2021 15:36:42 +0100 Subject: [PATCH] Qualify calls to make_wformat_args. Fixes #2639. (#2641) --- 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 3a5bf209675b..55825077f8ed 100644 --- a/include/fmt/xchar.h +++ b/include/fmt/xchar.h @@ -217,11 +217,11 @@ inline void vprint(wstring_view fmt, wformat_args args) { template void print(std::FILE* f, wformat_string fmt, T&&... args) { - return vprint(f, wstring_view(fmt), make_wformat_args(args...)); + return vprint(f, wstring_view(fmt), fmt::make_wformat_args(args...)); } template void print(wformat_string fmt, T&&... args) { - return vprint(wstring_view(fmt), make_wformat_args(args...)); + return vprint(wstring_view(fmt), fmt::make_wformat_args(args...)); } /**