diff options
author | 2023-01-29 18:16:24 +0000 | |
---|---|---|
committer | 2023-01-29 18:16:24 +0000 | |
commit | 24b3d648ff6c2c200003f55ac63fc910d7bfd40f (patch) | |
tree | 1c1324dc63cca9a7b3ea7a0a432535fa25c47d88 /runtime/mirror/array.h | |
parent | df68c0a6f0d36728fa728049e5bcec20de2d0d5e (diff) |
Revert "Write classes in runtime-generated app image."
This reverts commit df68c0a6f0d36728fa728049e5bcec20de2d0d5e.
Reason for revert: b/267084527
Change-Id: I2eacf89c23db00c46d56e78009efa11bed31af60
Diffstat (limited to 'runtime/mirror/array.h')
-rw-r--r-- | runtime/mirror/array.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/mirror/array.h b/runtime/mirror/array.h index 0116fdee6f..dfe7d475c1 100644 --- a/runtime/mirror/array.h +++ b/runtime/mirror/array.h @@ -264,7 +264,7 @@ class PointerArray : public Array { // Fixup the pointers in the dest arrays by passing our pointers through the visitor. Only copies // to dest if visitor(source_ptr) != source_ptr. template <VerifyObjectFlags kVerifyFlags = kVerifyNone, typename Visitor> - void Fixup(mirror::PointerArray* dest, PointerSize pointer_size, const Visitor& visitor) + void Fixup(ObjPtr<mirror::PointerArray> dest, PointerSize pointer_size, const Visitor& visitor) REQUIRES_SHARED(Locks::mutator_lock_); // Works like memcpy(), except we guarantee not to allow tearing of array values (ie using smaller |