| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 845d9da9481c3347b311f60b4487788dd9bb9443..1b36099128754bf4c638b0766068a6f1d88ded3e 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -5940,7 +5940,7 @@ class String : public Instance {
|
|
|
| static intptr_t hash_offset() { return OFFSET_OF(RawString, hash_); }
|
| static intptr_t Hash(const String& str, intptr_t begin_index, intptr_t len);
|
| - static intptr_t HashLatin1(const uint8_t* characters, intptr_t len);
|
| + static intptr_t Hash(const char* characters, intptr_t len);
|
| static intptr_t Hash(const uint16_t* characters, intptr_t len);
|
| static intptr_t Hash(const int32_t* characters, intptr_t len);
|
| static intptr_t HashRawSymbol(const RawString* symbol) {
|
|
|