diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-07-17 16:46:08 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-07-17 16:46:08 +0000 |
commit | c689056ed7542e69d9ab685409bbe22923faccce (patch) | |
tree | 15bcf2828fefb71d1eefe74112fe955331279f83 /include/ScopedJavaUnicodeString.h | |
parent | f915693597cb1df35c5181a9746835d9716c6ace (diff) | |
parent | 37f866f8068fce60d5af005d7f3ab039c08faf08 (diff) |
Merge "Update JNI code in preparation for ICU 59 switching to C++11 char16_t."
Diffstat (limited to 'include/ScopedJavaUnicodeString.h')
-rw-r--r-- | include/ScopedJavaUnicodeString.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ScopedJavaUnicodeString.h b/include/ScopedJavaUnicodeString.h index c1f487e46e..4e74ee1040 100644 --- a/include/ScopedJavaUnicodeString.h +++ b/include/ScopedJavaUnicodeString.h @@ -56,7 +56,7 @@ class ScopedJavaUnicodeString { private: JNIEnv* mEnv; jstring mString; - const UChar* mChars; + const jchar* mChars; icu::UnicodeString mUnicodeString; // Disallow copy and assignment. |