| 2367 | FMT_ENABLE_IF(U == type::string_type || U == type::cstring_type || |
| 2368 | U == type::char_type)> |
| 2369 | FMT_CONSTEXPR void set_debug_format(bool set = true) { |
| 2370 | specs_.set_type(set ? presentation_type::debug : presentation_type::none); |
| 2371 | } |
| 2372 | |
| 2373 | template <typename FormatContext> |
| 2374 | FMT_CONSTEXPR auto format(const T& val, FormatContext& ctx) const |
no test coverage detected