diff options
author | 2015-08-26 18:34:03 +0100 | |
---|---|---|
committer | 2015-10-15 12:22:39 -0700 | |
commit | 4b8f1ecd3aa5a29ec1463ff88fee9db365f257dc (patch) | |
tree | d113f8a5c6b61c078256cf15c7cbb9f7c8de0390 /runtime/mirror/array-inl.h | |
parent | 114873103db3d4d6e0da42ca02bad1ea8826443b (diff) |
Use ATTRIBUTE_UNUSED more.
Use it in lieu of UNUSED(), which had some incorrect uses.
Change-Id: If247dce58b72056f6eea84968e7196f0b5bef4da
Diffstat (limited to 'runtime/mirror/array-inl.h')
-rw-r--r-- | runtime/mirror/array-inl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/mirror/array-inl.h b/runtime/mirror/array-inl.h index 3d540297e5..ec7d758ebb 100644 --- a/runtime/mirror/array-inl.h +++ b/runtime/mirror/array-inl.h @@ -100,9 +100,8 @@ class SetLengthVisitor { explicit SetLengthVisitor(int32_t length) : length_(length) { } - void operator()(Object* obj, size_t usable_size) const + void operator()(Object* obj, size_t usable_size ATTRIBUTE_UNUSED) const SHARED_REQUIRES(Locks::mutator_lock_) { - UNUSED(usable_size); // Avoid AsArray as object is not yet in live bitmap or allocation stack. Array* array = down_cast<Array*>(obj); // DCHECK(array->IsArrayInstance()); |