mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:57:35 +00:00
LibJS: Declare type aliases with "using" instead of "typedef"
This commit is contained in:
parent
3d12d0f408
commit
d8de352ead
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ public:
|
||||||
private:
|
private:
|
||||||
const size_t m_cell_size;
|
const size_t m_cell_size;
|
||||||
|
|
||||||
typedef IntrusiveList<HeapBlock, RawPtr<HeapBlock>, &HeapBlock::m_list_node> BlockList;
|
using BlockList = IntrusiveList<HeapBlock, RawPtr<HeapBlock>, &HeapBlock::m_list_node>;
|
||||||
BlockList m_full_blocks;
|
BlockList m_full_blocks;
|
||||||
BlockList m_usable_blocks;
|
BlockList m_usable_blocks;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue