| 7856 | } |
| 7857 | |
| 7858 | uint8_t get_ccc(char32_t c) noexcept { |
| 7859 | return c < 0x110000 ? canonical_combining_class_block |
| 7860 | [canonical_combining_class_index[c >> 8]][c % 256] |
| 7861 | : 0; |
| 7862 | } |
| 7863 | |
| 7864 | void sort_marks(std::u32string& input) { |
| 7865 | for (size_t idx = 1; idx < input.size(); idx++) { |
no outgoing calls
no test coverage detected