summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runtime/gc/collector/concurrent_copying.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/collector/concurrent_copying.h b/runtime/gc/collector/concurrent_copying.h
index d740bf2109..43f520a52a 100644
--- a/runtime/gc/collector/concurrent_copying.h
+++ b/runtime/gc/collector/concurrent_copying.h
@@ -129,7 +129,7 @@ class MarkQueue {
Atomic<size_t> tail_;
size_t size_;
- std::unique_ptr<Atomic<mirror::Object*>> buf_;
+ std::unique_ptr<Atomic<mirror::Object*>[]> buf_;
};
class ConcurrentCopying : public GarbageCollector {