diff options
Diffstat (limited to 'runtime/class_table.h')
-rw-r--r-- | runtime/class_table.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/class_table.h b/runtime/class_table.h index 0ea62456f1..3bb212e536 100644 --- a/runtime/class_table.h +++ b/runtime/class_table.h @@ -134,11 +134,11 @@ class ClassTable { // Hash set that hashes class descriptor, and compares descriptors and class loaders. Results // should be compared for a matching class descriptor and class loader. - typedef HashSet<TableSlot, - TableSlotEmptyFn, - ClassDescriptorHash, - ClassDescriptorEquals, - TrackingAllocator<TableSlot, kAllocatorTagClassTable>> ClassSet; + using ClassSet = HashSet<TableSlot, + TableSlotEmptyFn, + ClassDescriptorHash, + ClassDescriptorEquals, + TrackingAllocator<TableSlot, kAllocatorTagClassTable>>; ClassTable(); |