From 71fb11381860cfd57e350fb8ed40d6df65f3a1a6 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 54927c06..cc168361 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``. */