Constructs a `printf_context` object. References to the arguments are stored in the context object so make sure they have appropriate lifetimes.
| 34 | /// Constructs a `printf_context` object. References to the arguments are |
| 35 | /// stored in the context object so make sure they have appropriate lifetimes. |
| 36 | basic_printf_context(basic_appender<Char> out, |
| 37 | basic_format_args<basic_printf_context> args) |
| 38 | : out_(out), args_(args) {} |
| 39 | |
| 40 | auto out() -> basic_appender<Char> { return out_; } |
| 41 | void advance_to(basic_appender<Char>) {} |
nothing calls this directly
no outgoing calls
no test coverage detected