mirror of
https://github.com/fmtlib/fmt.git
synced 2025-11-02 23:21:45 +01:00
Remove undocumented buffer_range and output_range
This commit is contained in:
@@ -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("") {}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user