diff options
Diffstat (limited to 'runtime/mirror/object.h')
-rw-r--r-- | runtime/mirror/object.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/runtime/mirror/object.h b/runtime/mirror/object.h index a3fc552594..7b110fcbd9 100644 --- a/runtime/mirror/object.h +++ b/runtime/mirror/object.h @@ -49,14 +49,14 @@ class DexCache; class FinalizerReference; template<class T> class ObjectArray; template<class T> class PrimitiveArray; -typedef PrimitiveArray<uint8_t> BooleanArray; -typedef PrimitiveArray<int8_t> ByteArray; -typedef PrimitiveArray<uint16_t> CharArray; -typedef PrimitiveArray<double> DoubleArray; -typedef PrimitiveArray<float> FloatArray; -typedef PrimitiveArray<int32_t> IntArray; -typedef PrimitiveArray<int64_t> LongArray; -typedef PrimitiveArray<int16_t> ShortArray; +using BooleanArray = PrimitiveArray<uint8_t>; +using ByteArray = PrimitiveArray<int8_t>; +using CharArray = PrimitiveArray<uint16_t>; +using DoubleArray = PrimitiveArray<double>; +using FloatArray = PrimitiveArray<float>; +using IntArray = PrimitiveArray<int32_t>; +using LongArray = PrimitiveArray<int64_t>; +using ShortArray = PrimitiveArray<int16_t>; class Reference; class String; class Throwable; |