diff --git a/Userland/Libraries/LibJS/Heap/CellAllocator.h b/Userland/Libraries/LibJS/Heap/CellAllocator.h index de1663b6fd..9ce1488601 100644 --- a/Userland/Libraries/LibJS/Heap/CellAllocator.h +++ b/Userland/Libraries/LibJS/Heap/CellAllocator.h @@ -43,7 +43,7 @@ public: private: const size_t m_cell_size; - typedef IntrusiveList, &HeapBlock::m_list_node> BlockList; + using BlockList = IntrusiveList, &HeapBlock::m_list_node>; BlockList m_full_blocks; BlockList m_usable_blocks; };