Skip to content

Commit

Permalink
fix compile error on msvc preview 4 (16.10) involving lookup clash /w…
Browse files Browse the repository at this point in the history
… STL
  • Loading branch information
JessyDL authored and vitaut committed May 19, 2021
1 parent 08d2250 commit 71fb113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -2781,7 +2781,7 @@ FMT_API auto vformat(string_view fmt, format_args args) -> std::string;
*/
template <typename... T>
FMT_INLINE auto format(format_string<T...> 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``. */
Expand Down

0 comments on commit 71fb113

Please sign in to comment.