fix compile error on msvc preview 4 (16.10) involving lookup clash /w STL
This commit is contained in:
parent
08d22503bb
commit
71fb113818
@ -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``. */
|
||||
|
Loading…
Reference in New Issue
Block a user