diff options
Diffstat (limited to 'runtime/monitor_pool.h')
-rw-r--r-- | runtime/monitor_pool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/monitor_pool.h b/runtime/monitor_pool.h index 4521a22c6f..76ce59f39f 100644 --- a/runtime/monitor_pool.h +++ b/runtime/monitor_pool.h @@ -236,7 +236,7 @@ class MonitorPool { // ChunkListCapacity(current_chunk_list_index_). size_t current_chunk_list_capacity_ GUARDED_BY(Locks::allocated_monitor_ids_lock_); - typedef TrackingAllocator<uint8_t, kAllocatorTagMonitorPool> Allocator; + using Allocator = TrackingAllocator<uint8_t, kAllocatorTagMonitorPool>; Allocator allocator_; // Start of free list of monitors. |