mirror of
https://github.com/fmtlib/fmt.git
synced 2025-01-25 09:35:16 +00:00
Deprecate wide stream function
This commit is contained in:
parent
1b54ba4b9d
commit
4b6b32f388
@ -294,13 +294,14 @@ inline auto format(const text_style& ts, wformat_string<T...> fmt, T&&... args)
|
||||
}
|
||||
|
||||
template <typename... T>
|
||||
void print(std::FILE* f, const text_style& ts, wformat_string<T...> fmt,
|
||||
const T&... args) {
|
||||
FMT_DEPRECATED void print(std::FILE* f, const text_style& ts,
|
||||
wformat_string<T...> fmt, const T&... args) {
|
||||
vprint(f, ts, fmt, fmt::make_wformat_args(args...));
|
||||
}
|
||||
|
||||
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...);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user