summaryrefslogtreecommitdiff
path: root/runtime/reference_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/reference_table.h')
-rw-r--r--runtime/reference_table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/reference_table.h b/runtime/reference_table.h
index 638894462b..2ffd866ce7 100644
--- a/runtime/reference_table.h
+++ b/runtime/reference_table.h
@@ -55,8 +55,8 @@ class ReferenceTable {
REQUIRES_SHARED(Locks::mutator_lock_);
private:
- typedef std::vector<GcRoot<mirror::Object>,
- TrackingAllocator<GcRoot<mirror::Object>, kAllocatorTagReferenceTable>> Table;
+ using Table = std::vector<GcRoot<mirror::Object>,
+ TrackingAllocator<GcRoot<mirror::Object>, kAllocatorTagReferenceTable>>;
static void Dump(std::ostream& os, Table& entries)
REQUIRES_SHARED(Locks::mutator_lock_)
REQUIRES(!Locks::alloc_tracker_lock_);