We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d12d0f commit d8de352Copy full SHA for d8de352
Userland/Libraries/LibJS/Heap/CellAllocator.h
@@ -43,7 +43,7 @@ class CellAllocator {
43
private:
44
const size_t m_cell_size;
45
46
- typedef IntrusiveList<HeapBlock, RawPtr<HeapBlock>, &HeapBlock::m_list_node> BlockList;
+ using BlockList = IntrusiveList<HeapBlock, RawPtr<HeapBlock>, &HeapBlock::m_list_node>;
47
BlockList m_full_blocks;
48
BlockList m_usable_blocks;
49
};
0 commit comments