diff options
author | 2014-04-22 19:15:49 +0000 | |
---|---|---|
committer | 2014-04-22 19:15:49 +0000 | |
commit | 15381179602c4a8e8d5e6749ca8b72e94a2bbd43 (patch) | |
tree | 8beceec3236b59a822b8179c14191c942fd07017 /native/jni/src/utils/char_utils.h | |
parent | 1f5d2f6746f31c87b591c4a4159b1550a9a899d7 (diff) | |
parent | 903be5bbd33b664c7e691d8bee0dd4d6376947bc (diff) | |
download | latinime-15381179602c4a8e8d5e6749ca8b72e94a2bbd43.tar.gz latinime-15381179602c4a8e8d5e6749ca8b72e94a2bbd43.tar.xz latinime-15381179602c4a8e8d5e6749ca8b72e94a2bbd43.zip |
am 903be5bb: Implement latinime_BinaryDictionary_createOnMemory().
* commit '903be5bbd33b664c7e691d8bee0dd4d6376947bc':
Implement latinime_BinaryDictionary_createOnMemory().
Diffstat (limited to 'native/jni/src/utils/char_utils.h')
-rw-r--r-- | native/jni/src/utils/char_utils.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/native/jni/src/utils/char_utils.h b/native/jni/src/utils/char_utils.h index 98b8966df..239419d5b 100644 --- a/native/jni/src/utils/char_utils.h +++ b/native/jni/src/utils/char_utils.h @@ -86,13 +86,6 @@ class CharUtils { return spaceCount; } - static AK_FORCE_INLINE std::vector<int> convertShortArrayToIntVector( - const unsigned short *const source, const int length) { - std::vector<int> destination; - destination.insert(destination.end(), source, source + length); - return destination; // Copies the vector - } - static unsigned short latin_tolower(const unsigned short c); static const std::vector<int> EMPTY_STRING; |