| 2700 | template <typename... Args, typename S, |
| 2701 | enable_if_t<(is_compile_string<S>::value), int>> |
| 2702 | void check_format_string(S format_str) { |
| 2703 | FMT_CONSTEXPR_DECL bool invalid_format = internal::do_check_format_string< |
| 2704 | typename S::char_type, internal::error_handler, |
| 2705 | remove_const_t<remove_reference_t<Args>>...>(to_string_view(format_str)); |
| 2706 | (void)invalid_format; |
| 2707 | } |
| 2708 | |
| 2709 | template <template <typename> class Handler, typename Context> |
| 2710 | void handle_dynamic_spec(int& value, arg_ref<typename Context::char_type> ref, |
nothing calls this directly
no test coverage detected