| 1838 | } |
| 1839 | |
| 1840 | UString::size_type UString::_verifyUTF8(const unsigned char* c_str) |
| 1841 | { |
| 1842 | std::string_view tmp(reinterpret_cast<const char*>(c_str)); |
| 1843 | return _verifyUTF8(tmp); |
| 1844 | } |
| 1845 | |
| 1846 | UString::size_type UString::_verifyUTF8(const char* c_str, size_type num) |
| 1847 | { |
nothing calls this directly
no test coverage detected