Remove undocumented buffer_range and output_range

This commit is contained in:
Victor Zverovich
2020-05-30 13:03:41 -07:00
parent 57fc44907f
commit 3245145a41
4 changed files with 9 additions and 90 deletions

View File

@@ -65,10 +65,10 @@ TEST(OStreamTest, Enum) {
}
struct test_arg_formatter
: fmt::arg_formatter<fmt::buffer_range<char>::iterator, char> {
: fmt::arg_formatter<fmt::format_context::iterator, char> {
fmt::format_parse_context parse_ctx;
test_arg_formatter(fmt::format_context& ctx, fmt::format_specs& s)
: fmt::arg_formatter<fmt::buffer_range<char>::iterator, char>(
: fmt::arg_formatter<fmt::format_context::iterator, char>(
ctx, &parse_ctx, &s),
parse_ctx("") {}
};