| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 3c1ec51eb1bb4ded7efa60df0c8f4cfa7c24a979..a85283affb2e2384a28d393cf13897ff998fce66 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -1147,7 +1147,7 @@ class Class : public Object {
|
| RawArray* fields() const { return raw_ptr()->fields_; }
|
| void SetFields(const Array& value) const;
|
| void AddField(const Field& field) const;
|
| - void AddFields(const GrowableObjectArray& fields) const;
|
| + void AddFields(const GrowableArray<const Field*>& fields) const;
|
| intptr_t FindFieldIndex(const Field& field) const;
|
| RawField* FieldFromIndex(intptr_t idx) const;
|
|
|
|
|