Constructs a `context` object. References to the arguments are stored in the object so make sure they have appropriate lifetimes.
| 2641 | /// Constructs a `context` object. References to the arguments are stored |
| 2642 | /// in the object so make sure they have appropriate lifetimes. |
| 2643 | constexpr context(iterator out, format_args args, locale_ref loc = {}) |
| 2644 | : out_(out), args_(args), loc_(loc) {} |
| 2645 | context(context&&) = default; |
| 2646 | context(const context&) = delete; |
| 2647 | void operator=(const context&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected