diff --git a/include/fmt/xchar.h b/include/fmt/xchar.h index eed501c7..1e787508 100644 --- a/include/fmt/xchar.h +++ b/include/fmt/xchar.h @@ -294,13 +294,14 @@ inline auto format(const text_style& ts, wformat_string fmt, T&&... args) } template -void print(std::FILE* f, const text_style& ts, wformat_string fmt, - const T&... args) { +FMT_DEPRECATED void print(std::FILE* f, const text_style& ts, + wformat_string fmt, const T&... args) { vprint(f, ts, fmt, fmt::make_wformat_args(args...)); } template -void print(const text_style& ts, wformat_string fmt, const T&... args) { +FMT_DEPRECATED void print(const text_style& ts, wformat_string fmt, + const T&... args) { return print(stdout, ts, fmt, args...); }