diff options
Diffstat (limited to 'libutils/String8.cpp')
-rw-r--r-- | libutils/String8.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/libutils/String8.cpp b/libutils/String8.cpp index 0025c5648..d13548e4c 100644 --- a/libutils/String8.cpp +++ b/libutils/String8.cpp @@ -468,21 +468,6 @@ void String8::toUpper(size_t start, size_t length) unlockBuffer(len); } -size_t String8::getUtf32Length() const -{ - return utf8_to_utf32_length(mString, length()); -} - -int32_t String8::getUtf32At(size_t index, size_t *next_index) const -{ - return utf32_from_utf8_at(mString, length(), index, next_index); -} - -void String8::getUtf32(char32_t* dst) const -{ - utf8_to_utf32(mString, length(), dst); -} - // --------------------------------------------------------------------------- // Path functions |