diff options
Diffstat (limited to 'src/reflection.h')
| -rw-r--r-- | src/reflection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reflection.h b/src/reflection.h index 93219f8afc..b61acda267 100644 --- a/src/reflection.h +++ b/src/reflection.h @@ -25,13 +25,13 @@ namespace art { class Class; class Field; union JValue; -class Method; +class AbstractMethod; class Object; class ScopedObjectAccess; void BoxPrimitive(Primitive::Type src_class, JValue& value) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); -bool UnboxPrimitiveForArgument(Object* o, Class* dst_class, JValue& unboxed_value, Method* m, +bool UnboxPrimitiveForArgument(Object* o, Class* dst_class, JValue& unboxed_value, AbstractMethod* m, size_t index) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); bool UnboxPrimitiveForField(Object* o, Class* dst_class, JValue& unboxed_value, Field* f) |