| 2534 | struct diff_match_patch_utf32_direct { |
| 2535 | typedef utf32_type utf32_t; |
| 2536 | template <class iterator> static iterator to_utf32(iterator i, iterator /*end*/, utf32_t& u) |
| 2537 | { |
| 2538 | u = *i++; |
| 2539 | return i; |
| 2540 | } |
| 2541 | template <class iterator> static iterator from_utf32(utf32_t u, iterator o) |
| 2542 | { |
| 2543 | *o++ = static_cast<char_t>(u); |
nothing calls this directly
no outgoing calls
no test coverage detected