LibJS: Only use 1 bit for Cell boolean flag

This commit is contained in:
Andreas Kling 2022-10-24 19:37:36 +02:00
parent 455167008d
commit 0e232b1c8d
Notes: sideshowbarker 2024-07-17 05:09:22 +09:00

View file

@ -98,7 +98,7 @@ protected:
private:
bool m_mark : 1 { false };
bool m_overrides_must_survive_garbage_collection { false };
bool m_overrides_must_survive_garbage_collection : 1 { false };
State m_state : 1 { State::Live };
};