| 154 | // Compiles a format string and invokes handler(part) for each parsed part. |
| 155 | template <bool IS_CONSTEXPR, typename Char, typename PartHandler> |
| 156 | FMT_CONSTEXPR void compile_format_string(basic_string_view<Char> format_str, |
| 157 | PartHandler handler) { |
| 158 | parse_format_string<IS_CONSTEXPR>( |
| 159 | format_str, |
| 160 | format_string_compiler<Char, PartHandler>(format_str, handler)); |
| 161 | } |
| 162 | |
| 163 | template <typename Range, typename Context, typename Id> |
| 164 | void format_arg( |
nothing calls this directly
no test coverage detected