1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

LibJS: Fix m_allocations_since_last_gc initialization value

This commit is contained in:
Linus Groh 2021-03-28 18:22:54 +02:00 committed by Andreas Kling
parent d927b69082
commit 8c99968ec1

View file

@ -112,7 +112,7 @@ private:
}
size_t m_max_allocations_between_gc { 10000 };
size_t m_allocations_since_last_gc { false };
size_t m_allocations_since_last_gc { 0 };
bool m_should_collect_on_every_allocation { false };