From 14979b449f6a5b86dbceaac70de089ffe1421c6c Mon Sep 17 00:00:00 2001 From: Jessy De Lannoit Date: Wed, 19 May 2021 22:03:16 +0300 Subject: [PATCH] fix compile error on msvc preview 4 (16.10) involving lookup clash /w STL --- include/fmt/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index d245726b..ea386bf9 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -2781,7 +2781,7 @@ FMT_API auto vformat(string_view fmt, format_args args) -> std::string; */ template FMT_INLINE auto format(format_string fmt, T&&... args) -> std::string { - return vformat(fmt, make_format_args(args...)); + return vformat(fmt, fmt::make_format_args(args...)); } /** Formats a string and writes the output to ``out``. */