| 746 | |
| 747 | template <typename Formatter> |
| 748 | FMT_CONSTEXPR auto maybe_set_debug_format(Formatter& f, bool set) |
| 749 | -> decltype(f.set_debug_format(set)) { |
| 750 | f.set_debug_format(set); |
| 751 | } |
| 752 | template <typename Formatter> |
| 753 | FMT_CONSTEXPR void maybe_set_debug_format(Formatter&, ...) {} |
| 754 |
no test coverage detected