| 2401 | |
| 2402 | template <typename Char> |
| 2403 | FMT_CONSTEXPR const Char* next_code_point(const Char* begin, const Char* end) { |
| 2404 | if (const_check(sizeof(Char) != 1) || (*begin & 0x80) == 0) return begin + 1; |
| 2405 | do { |
| 2406 | ++begin; |
| 2407 | } while (begin != end && (*begin & 0xc0) == 0x80); |
| 2408 | return begin; |
| 2409 | } |
| 2410 | |
| 2411 | // Parses fill and alignment. |
| 2412 | template <typename Char, typename Handler> |
no test coverage detected