diff options
| author | 2019-03-26 10:54:50 +0000 | |
|---|---|---|
| committer | 2019-03-26 17:06:55 +0000 | |
| commit | c524e9e7e767be0801cf110310039635698c1532 (patch) | |
| tree | cd11699dce8c175a0940a583f5ea02ce89f73a85 /runtime/mirror/array-inl.h | |
| parent | 2e1ec835d08ca0ab81b1c24436f659f952ace260 (diff) | |
ObjPtr<>-ify mirror::Class.
And move function definitions that rely on obj_ptr-inl.h
from class.h to class-inl.h .
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 31113334
Change-Id: I5ccc765d0a02b1d37cb39ed68c17b8456faf92ea
Diffstat (limited to 'runtime/mirror/array-inl.h')
| -rw-r--r-- | runtime/mirror/array-inl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/mirror/array-inl.h b/runtime/mirror/array-inl.h index d9d88e187b..3a0cbe2a59 100644 --- a/runtime/mirror/array-inl.h +++ b/runtime/mirror/array-inl.h @@ -270,7 +270,7 @@ inline void PointerArray::SetElementPtrSize(uint32_t idx, T* element, PointerSiz } template <VerifyObjectFlags kVerifyFlags, typename Visitor> -inline void PointerArray::Fixup(mirror::PointerArray* dest, +inline void PointerArray::Fixup(ObjPtr<mirror::PointerArray> dest, PointerSize pointer_size, const Visitor& visitor) { for (size_t i = 0, count = GetLength(); i < count; ++i) { |