Remove old deprecated functions

This commit is contained in:
Victor Zverovich 2019-07-06 07:55:52 -07:00
parent 1d3e3d8c04
commit 8e0dcd20b3
2 changed files with 1 additions and 5 deletions

View File

@ -1054,7 +1054,6 @@ template <typename OutputIt, typename Char> class basic_format_context {
// Returns an iterator to the beginning of the output range. // Returns an iterator to the beginning of the output range.
iterator out() { return out_; } iterator out() { return out_; }
FMT_DEPRECATED iterator begin() { return out_; }
// Advances the begin iterator to ``it``. // Advances the begin iterator to ``it``.
void advance_to(iterator it) { out_ = it; } void advance_to(iterator it) { out_ = it; }

View File

@ -915,7 +915,7 @@ enum { SIGN_FLAG = 1, PLUS_FLAG = 2, MINUS_FLAG = 4, HASH_FLAG = 8 };
struct align_spec { struct align_spec {
unsigned width_; unsigned width_;
// Fill is always wchar_t and cast to char if necessary to avoid having // Fill is always wchar_t and cast to char if necessary to avoid having
// two specialization of AlignSpec and its subclasses. // two specialization of align_spec and its subclasses.
wchar_t fill_; wchar_t fill_;
alignment align_; alignment align_;
@ -2589,9 +2589,6 @@ class arg_formatter : public internal::arg_formatter_base<Range> {
ctx_(ctx), ctx_(ctx),
parse_ctx_(parse_ctx) {} parse_ctx_(parse_ctx) {}
FMT_DEPRECATED arg_formatter(context_type& ctx, format_specs& spec)
: base(Range(ctx.out()), &spec), ctx_(ctx) {}
using base::operator(); using base::operator();
/** Formats an argument of a user-defined type. */ /** Formats an argument of a user-defined type. */