From c5aad69f2a78c5a76846c52cb51990efe41d919b Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 15 Feb 2019 15:00:02 -0800 Subject: [PATCH] Restore deprecated begin() --- include/fmt/core.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/fmt/core.h b/include/fmt/core.h index 2bae6615..3c101bb3 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1123,6 +1123,7 @@ template class basic_format_context { // Returns an iterator to the beginning of the output range. iterator out() { return out_; } + FMT_DEPRECATED iterator begin() { return out_; } // Advances the begin iterator to ``it``. void advance_to(iterator it) { out_ = it; }