mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 10:47:35 +02:00
Deprecate wide stream function
This commit is contained in:
@ -294,13 +294,14 @@ inline auto format(const text_style& ts, wformat_string<T...> fmt, T&&... args)
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename... T>
|
template <typename... T>
|
||||||
void print(std::FILE* f, const text_style& ts, wformat_string<T...> fmt,
|
FMT_DEPRECATED void print(std::FILE* f, const text_style& ts,
|
||||||
const T&... args) {
|
wformat_string<T...> fmt, const T&... args) {
|
||||||
vprint(f, ts, fmt, fmt::make_wformat_args(args...));
|
vprint(f, ts, fmt, fmt::make_wformat_args(args...));
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename... T>
|
template <typename... T>
|
||||||
void print(const text_style& ts, wformat_string<T...> fmt, const T&... args) {
|
FMT_DEPRECATED void print(const text_style& ts, wformat_string<T...> fmt,
|
||||||
|
const T&... args) {
|
||||||
return print(stdout, ts, fmt, args...);
|
return print(stdout, ts, fmt, args...);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user