summaryrefslogtreecommitdiff
path: root/src/gc/heap_bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gc/heap_bitmap.h')
-rw-r--r--src/gc/heap_bitmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gc/heap_bitmap.h b/src/gc/heap_bitmap.h
index 1610df8fe2..666fcc7dd9 100644
--- a/src/gc/heap_bitmap.h
+++ b/src/gc/heap_bitmap.h
@@ -38,9 +38,9 @@ namespace art {
EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
SpaceBitmap* bitmap = GetSpaceBitmap(obj);
if (LIKELY(bitmap != NULL)) {
- return bitmap->Clear(obj);
+ bitmap->Clear(obj);
} else {
- return large_objects_->Clear(obj);
+ large_objects_->Clear(obj);
}
}