diff options
Diffstat (limited to 'runtime/mirror/object.cc')
| -rw-r--r-- | runtime/mirror/object.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/mirror/object.cc b/runtime/mirror/object.cc index f9740bbfae..b177e2f579 100644 --- a/runtime/mirror/object.cc +++ b/runtime/mirror/object.cc @@ -106,9 +106,8 @@ class CopyObjectVisitor { : self_(self), orig_(orig), num_bytes_(num_bytes) { } - void operator()(Object* obj, size_t usable_size) const + void operator()(Object* obj, size_t usable_size ATTRIBUTE_UNUSED) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { - UNUSED(usable_size); Object::CopyObject(self_, obj, orig_->Get(), num_bytes_); } |