diff options
Diffstat (limited to 'runtime/mirror/array.h')
-rw-r--r-- | runtime/mirror/array.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/mirror/array.h b/runtime/mirror/array.h index 1fb7f2e955..7a0976ab48 100644 --- a/runtime/mirror/array.h +++ b/runtime/mirror/array.h @@ -44,13 +44,14 @@ class MANAGED Array : public Object { // Allocates an array with the given properties, if kFillUsable is true the array will be of at // least component_count size, however, if there's usable space at the end of the allocation the // array will fill it. - template <bool kIsInstrumented = true, bool kFillUsable = false, bool kCheckLargeObject = true> + template <bool kIsInstrumented = true, bool kFillUsable = false> ALWAYS_INLINE static ObjPtr<Array> Alloc(Thread* self, ObjPtr<Class> array_class, int32_t component_count, size_t component_size_shift, gc::AllocatorType allocator_type) - REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Roles::uninterruptible_); + REQUIRES_SHARED(Locks::mutator_lock_) + REQUIRES(!Roles::uninterruptible_); static ObjPtr<Array> CreateMultiArray(Thread* self, Handle<Class> element_class, |