diff options
Diffstat (limited to 'runtime/art_field.h')
-rw-r--r-- | runtime/art_field.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/art_field.h b/runtime/art_field.h index 7c2f490706..cacb32450b 100644 --- a/runtime/art_field.h +++ b/runtime/art_field.h @@ -19,6 +19,7 @@ #include <jni.h> +#include "dex_file_types.h" #include "gc_root.h" #include "modifiers.h" #include "obj_ptr.h" @@ -216,7 +217,8 @@ class ArtField FINAL { private: ObjPtr<mirror::Class> ProxyFindSystemClass(const char* descriptor) REQUIRES_SHARED(Locks::mutator_lock_); - ObjPtr<mirror::Class> ResolveGetType(uint32_t type_idx) REQUIRES_SHARED(Locks::mutator_lock_); + ObjPtr<mirror::Class> ResolveGetType(dex::TypeIndex type_idx) + REQUIRES_SHARED(Locks::mutator_lock_); ObjPtr<mirror::String> ResolveGetStringName(Thread* self, const DexFile& dex_file, uint32_t string_idx, |