| Index: runtime/vm/unicode.h
|
| diff --git a/runtime/vm/unicode.h b/runtime/vm/unicode.h
|
| index 2cb23c04511cbb969a36ea57b367a46a12868811..fdb755d0f96eea81aa41d63a6248af3ca86e964b 100644
|
| --- a/runtime/vm/unicode.h
|
| +++ b/runtime/vm/unicode.h
|
| @@ -52,10 +52,10 @@ class Utf8 : AllStatic {
|
| intptr_t len);
|
| static bool DecodeToUTF32(const uint8_t* utf8_array,
|
| intptr_t array_len,
|
| - uint32_t* dst,
|
| + int32_t* dst,
|
| intptr_t len);
|
| static bool DecodeCStringToUTF32(const char* str,
|
| - uint32_t* dst,
|
| + int32_t* dst,
|
| intptr_t len) {
|
| ASSERT(str != NULL);
|
| intptr_t array_len = strlen(str);
|
|
|