mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 02:26:10 +00:00
LibJS: Fix m_allocations_since_last_gc initialization value
This commit is contained in:
parent
d927b69082
commit
8c99968ec1
Notes:
sideshowbarker
2024-07-18 20:59:46 +09:00
Author: https://github.com/linusg
Commit: 8c99968ec1
Pull-request: https://github.com/SerenityOS/serenity/pull/5999
1 changed files with 1 additions and 1 deletions
|
@ -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 };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue