diff --git a/Userland/Libraries/LibJS/Heap/BlockAllocator.h b/Userland/Libraries/LibJS/Heap/BlockAllocator.h index 4af186c4d7..70c873c10f 100644 --- a/Userland/Libraries/LibJS/Heap/BlockAllocator.h +++ b/Userland/Libraries/LibJS/Heap/BlockAllocator.h @@ -22,7 +22,7 @@ public: private: static constexpr size_t max_cached_blocks = 64; - Vector m_blocks; + Vector m_blocks; }; }