| 23 | #endif |
| 24 | |
| 25 | FMT_BEGIN_NAMESPACE |
| 26 | |
| 27 | template <typename Char> struct formatting_base { |
| 28 | template <typename ParseContext> |
| 29 | FMT_CONSTEXPR auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { |
| 30 | return ctx.begin(); |
| 31 | } |
| 32 | }; |
| 33 | |
| 34 | template <typename Char, typename Enable = void> |