| 411 | struct test_buffer final : fmt::detail::buffer<char> { |
| 412 | char data[10]; |
| 413 | test_buffer() |
| 414 | : fmt::detail::buffer<char>([](buffer<char>&, size_t) {}, data, 0, |
| 415 | 10) {} |
| 416 | } buffer; |
| 417 | auto parse_ctx = fmt::format_parse_context(""); |
| 418 | auto ctx = fmt::format_context(fmt::appender(buffer), fmt::format_args()); |
nothing calls this directly
no outgoing calls
no test coverage detected