mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 02:37:36 +02:00
fix compile error on msvc preview 4 (16.10) involving lookup clash /w STL
This commit is contained in:
committed by
Victor Zverovich
parent
08d22503bb
commit
71fb113818
@ -2781,7 +2781,7 @@ FMT_API auto vformat(string_view fmt, format_args args) -> std::string;
|
|||||||
*/
|
*/
|
||||||
template <typename... T>
|
template <typename... T>
|
||||||
FMT_INLINE auto format(format_string<T...> fmt, T&&... args) -> std::string {
|
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``. */
|
/** Formats a string and writes the output to ``out``. */
|
||||||
|
Reference in New Issue
Block a user