diff options
author | 2018-06-01 13:14:32 +0100 | |
---|---|---|
committer | 2018-06-01 16:31:30 +0100 | |
commit | bcf175247272d0e321c8d988c3c01c123b56e36e (patch) | |
tree | 9f65ece5ce9474aa4fcf16fbfca6278109dc9a67 /runtime/gc/heap_verification_test.cc | |
parent | 09c5ca40635faee00f40f6ca0581dd475efd545e (diff) |
ObjPtr<>-ify array allocations.
And remove some unnecessary calls to ObjPtr<>::Ptr().
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 31113334
Change-Id: Ie313980f7f23b33b0ccea4fa8d5131d643c59080
Diffstat (limited to 'runtime/gc/heap_verification_test.cc')
-rw-r--r-- | runtime/gc/heap_verification_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/heap_verification_test.cc b/runtime/gc/heap_verification_test.cc index 4f06ee6910..38695332bb 100644 --- a/runtime/gc/heap_verification_test.cc +++ b/runtime/gc/heap_verification_test.cc @@ -35,7 +35,7 @@ class VerificationTest : public CommonRuntimeTest { VerificationTest() {} template <class T> - mirror::ObjectArray<T>* AllocObjectArray(Thread* self, size_t length) + ObjPtr<mirror::ObjectArray<T>> AllocObjectArray(Thread* self, size_t length) REQUIRES_SHARED(Locks::mutator_lock_) { return mirror::ObjectArray<T>::Alloc( self, |