mirror of
https://github.com/fmtlib/fmt.git
synced 2025-11-27 21:00:01 +01:00
context_base::begin -> out
This commit is contained in:
@@ -840,7 +840,8 @@ class context_base {
|
||||
void on_error(const char *message) { parse_context_.on_error(message); }
|
||||
|
||||
// Returns an iterator to the beginning of the output range.
|
||||
iterator begin() { return out_; }
|
||||
iterator out() { return out_; }
|
||||
iterator begin() { return out_; } // deprecated
|
||||
|
||||
// Advances the begin iterator to ``it``.
|
||||
void advance_to(iterator it) { out_ = it; }
|
||||
|
||||
Reference in New Issue
Block a user