From 1e769f049728f895d260f76485b9f06b9322859f Mon Sep 17 00:00:00 2001 From: Marek Kurdej Date: Fri, 10 Dec 2021 11:17:31 +0100 Subject: [PATCH] Qualify calls to make_wformat_args. Fixes #2639. --- 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 3a5bf209..55825077 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...)); } /**