| 3868 | enum { builtin_types = FMT_BUILTIN_TYPES }; |
| 3869 | |
| 3870 | constexpr generic_context(OutputIt out, |
| 3871 | basic_format_args<generic_context> args, |
| 3872 | locale_ref loc = {}) |
| 3873 | : out_(out), args_(args), loc_(loc) {} |
| 3874 | generic_context(generic_context&&) = default; |
| 3875 | generic_context(const generic_context&) = delete; |
| 3876 | void operator=(const generic_context&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected