summaryrefslogtreecommitdiff
path: root/runtime/mirror/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/mirror/array.h')
-rw-r--r--runtime/mirror/array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/mirror/array.h b/runtime/mirror/array.h
index 717d1de779..4bf9deebfe 100644
--- a/runtime/mirror/array.h
+++ b/runtime/mirror/array.h
@@ -158,7 +158,7 @@ class MANAGED PrimitiveArray : public Array {
MIRROR_CLASS("[F");
MIRROR_CLASS("[D");
- typedef T ElementType;
+ using ElementType = T;
static ObjPtr<PrimitiveArray<T>> Alloc(Thread* self, size_t length)
REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Roles::uninterruptible_);